feat: add blog contents
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-07-31 11:01:22 +02:00
parent da0771ccb9
commit 4bb6b0228a
79 changed files with 18092 additions and 246 deletions

19
mise.toml Normal file
View File

@@ -0,0 +1,19 @@
[tasks."ci:build"]
dir = "./ci"
run = "cargo build"
[tasks."ci:run"]
run = "./ci/target/debug/ci"
[tasks."ci:main"]
depends = ["ci:build"]
run = "mise run ci:run main"
[tasks."ci:pr"]
depends = ["ci:build"]
run = "mise run ci:run pr"
[tasks."dev"]
env = { RUN = "local" }
depends = ["ci:build"]
run = "mise run ci:run"