summaryrefslogtreecommitdiffstats
path: root/mise.toml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-03-12 16:51:39 +0100
committerAhmed Abdelhalim <[email protected]>2026-03-12 16:51:39 +0100
commit6ba53e6ca96c79827717df0f430a9424e5877d89 (patch)
treeb715c1a409c2cd9863c0047fc08a0d140766804c /mise.toml
parent6e7394c6d46357190e88b8b172aa7623e751fb1b (diff)
Update readme and AI agent note
Diffstat (limited to 'mise.toml')
-rw-r--r--mise.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/mise.toml b/mise.toml
new file mode 100644
index 0000000..360c6d7
--- /dev/null
+++ b/mise.toml
@@ -0,0 +1,21 @@
+[tools]
+hugo-extended = "v0.157.0"
+wrangler = "4.72.0"
+
+[tasks.clean]
+description = "Clean already built static site"
+run = "rm -rf public"
+hide = true
+
+[tasks.build]
+description = "Build static website"
+run = "hugo"
+
+[tasks.serve]
+description = "Server website with draft posts"
+run = "hugo serve --buildDrafts"
+
+[tasks.deploy]
+description = "Deploy to cloudflare"
+run = "npx wrangler pages deploy public"
+depends = ['clean', 'build']