From f811c3319295181246374af366e64c9c5adbb699 Mon Sep 17 00:00:00 2001 From: jutty Date: Sun, 14 Dec 2025 06:29:37 -0300 Subject: [PATCH] Update justfile with a fixed development address --- .justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.justfile b/.justfile index 871c43b..f34bf85 100644 --- a/.justfile +++ b/.justfile @@ -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