diff options
| author | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-08 10:08:44 +0200 |
|---|---|---|
| committer | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-08 10:08:44 +0200 |
| commit | d463633ecdc66cc4bedd6e5d1267f0eb69493f38 (patch) | |
| tree | 40ea2f98ce00897a8a43d1bef746f9a45cf5c7be /.mise.toml | |
| parent | 2c00b74cc02b55e26d68fef108596aae56080d5a (diff) | |
docs: Document ride backfill workflow
Diffstat (limited to '.mise.toml')
| -rw-r--r-- | .mise.toml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 ."] |