summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 6 insertions, 0 deletions
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')}} && \