diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-02-22 09:55:42 -0500 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-02-22 09:55:52 -0500 |
commit | 9fd787527146d3bc37c6312a3bde29ed38018bb0 (patch) | |
tree | 3c6cbb5125307ed07823f978355f939a92b56d81 /justfile | |
parent | 50bd2145129d40e111088a4a80be732f8614bd5c (diff) |
Add run and default targets
run is useful for local testing
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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')}} && \ |