aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClawd <ai@clawd.bot>2026-02-17 08:11:19 -0800
committerClawd <ai@clawd.bot>2026-02-17 08:11:19 -0800
commit6f02ec84a8299fc5577f147cc8741c8a4b162b64 (patch)
tree020f3690e92732dcba723be0cfaef649f46de137 /Makefile
parent4b5a2656df13181b637c59c29ff31751e11cf22a (diff)
parent05ea98df57599775c1d5bfea336012b075531670 (diff)
Merge agent-mode: v2 rewrite complete
- Removed all v1 code (-2800 lines) - Simplified state to just default_host + base_domain - Atomic port allocation via flock - --container-port flag for Docker - Custom domains shown in ship list - Caddyfiles preserved on redeploy - JSON output by default, --pretty for humans
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 13f2835..abab996 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
1.PHONY: build install deploy-website
2
1build: 3build:
2 go build -o ./bin/ship ./cmd/ship 4 go build -o ./bin/ship ./cmd/ship
3 5
4install: 6install:
5 cp ./bin/ship /usr/local/bin/ 7 cp ./bin/ship /usr/local/bin/
6 8
9deploy-website:
10 ship website/ ship.northwest.io
11