slack status without the slack status.zzstoatzz.io/
quickslice

add dev command with cargo watch on port 3000

- adds `just dev` command that runs cargo watch
- uses port 3000 to avoid conflicts with other local services
- watches src and templates directories for changes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
+3
+3
justfile
··· 1 1 watch: 2 2 watchexec -w src -w templates -r cargo run 3 3 4 + dev: 5 + SERVER_PORT=3000 cargo watch -x run -w src -w templates 6 + 4 7 deploy: 5 8 fly deploy 6 9