From 9fd787527146d3bc37c6312a3bde29ed38018bb0 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 22 Feb 2025 09:55:42 -0500 Subject: Add run and default targets run is useful for local testing --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'justfile') diff --git a/justfile b/justfile index d51fe15..5939aff 100644 --- a/justfile +++ b/justfile @@ -1,11 +1,17 @@ set dotenv-load := true +@default: + just --list + clean: rm -rf bin/ build: go build -o bin/http-nats-proxy main.go +run: clean build + ./bin/http-nats-proxy + deploy: ssh -t {{env('DEPLOY_HOST')}} "\ cd {{env('DEPLOY_DIR')}} && \ -- cgit