barkeep: initial commit
1 file changed, 8 insertions(+), 0 deletions(-)
changed files
A cmd/barkeep/justfile
@@ -0,0 +1,8 @@ +listen_address := env_var_or_default("SERVER_LISTEN_ADDRESS", "::1") +port := env_var_or_default("SERVER_PORT", "8081") + +run: + systemfd -s http::{{ listen_address }}:{{ port }} -- wgo run --root ../.. . --dev + +build: + go build .