diff options
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')}} && \ |