Update justfile with a fixed development address

This commit is contained in:
Juno Takano 2025-12-14 06:24:59 -03:00
commit a7fb7edf17

View file

@ -6,7 +6,7 @@ _default:
# Build on changes
[group('dev')]
serve-watch:
bacon --job run-long
bacon --job run-long -- localhost:3003
alias sw := serve-watch
alias dev := serve-watch
@ -37,7 +37,7 @@ push: check
# Start server
[group('run')]
serve:
cargo run
cargo run localhost:3003
alias s := serve