summaryrefslogtreecommitdiff
path: root/.mise.toml
diff options
context:
space:
mode:
authorMartin Kagamino Lehoux <martin@lehoux.net>2026-08-08 10:08:44 +0200
committerMartin Kagamino Lehoux <martin@lehoux.net>2026-08-08 10:08:44 +0200
commitd463633ecdc66cc4bedd6e5d1267f0eb69493f38 (patch)
tree40ea2f98ce00897a8a43d1bef746f9a45cf5c7be /.mise.toml
parent2c00b74cc02b55e26d68fef108596aae56080d5a (diff)
docs: Document ride backfill workflow
Diffstat (limited to '.mise.toml')
-rw-r--r--.mise.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.mise.toml b/.mise.toml
index 69f2629..8ce3428 100644
--- a/.mise.toml
+++ b/.mise.toml
@@ -1,5 +1,6 @@
[tools]
go = "1.25.12"
+watchexec = "latest"
[tasks.generate]
description = "Generate templ Go files"
@@ -25,3 +26,7 @@ run = "DATABASE_URL=sqlite:biking_home.db go run github.com/amacneil/dbmate up"
[tasks.dev]
description = "Run the web server"
run = "go run ."
+
+[tasks.dev-watch]
+description = "Regenerate templates and run the web server"
+run = ["mise run generate", "go run ."]