diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-01-26 16:21:36 -0500 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-02-01 09:33:17 -0500 |
commit | ac7fca9281c64412b5d4f0c7e718e87945dd28b0 (patch) | |
tree | 934e072a760713a9f3d84d81acaca55faa149055 | |
parent | f9dbea4c251a21f7b509360a1d9522d643b6007b (diff) |
Add build target
-rw-r--r-- | justfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ @default: just --list -run: - go build -o bin/bluesky-nats-proxy - bin/bluesky-nats-proxy
\ No newline at end of file +run: build + bin/bluesky-nats-proxy + +build: + go build -o bin/bluesky-nats-proxy
\ No newline at end of file |