summaryrefslogtreecommitdiffstats
path: root/cmd/ship/main.go
diff options
context:
space:
mode:
authorClawd <ai@clawd.bot>2026-02-17 07:54:26 -0800
committerClawd <ai@clawd.bot>2026-02-17 07:54:26 -0800
commit6b2c04728cd914f27ae62c1df0bf5df24ac9a628 (patch)
tree8a103ac79194a05fae438b0da105589aaa6b78d9 /cmd/ship/main.go
parent5e5de4ea1aa98f75d470e4a61644d4b9f100c4b0 (diff)
Remove v1 code, simplify state to just base_domain
- Delete all v1 commands (deploy, init, list, status, remove, etc.) - Delete v1 env/ and host/ subcommand directories - Simplify state.go: remove NextPort, Apps, AllocatePort, etc. - Local state now only tracks default_host + base_domain per host - Ports and deploys are tracked on the server (/etc/ship/ports/) - host init now creates minimal state.json
Diffstat (limited to 'cmd/ship/main.go')
-rw-r--r--cmd/ship/main.go17
1 files changed, 1 insertions, 16 deletions
diff --git a/cmd/ship/main.go b/cmd/ship/main.go
index 73d9a20..17516fb 100644
--- a/cmd/ship/main.go
+++ b/cmd/ship/main.go
@@ -1,25 +1,10 @@
1package main 1package main
2 2
3import ( 3import "os"
4 "fmt"
5 "os"
6)
7 4
8func main() { 5func main() {
9 // Use v2 (agent-first JSON) interface by default
10 // Set SHIP_V1=1 to use legacy human-formatted output
11 if os.Getenv("SHIP_V1") == "1" {
12 if err := rootCmd.Execute(); err != nil {
13 fmt.Fprintf(os.Stderr, "Error: %v\n", err)
14 os.Exit(1)
15 }
16 return
17 }
18
19 // v2: JSON output by default
20 initV2() 6 initV2()
21 if err := rootV2Cmd.Execute(); err != nil { 7 if err := rootV2Cmd.Execute(); err != nil {
22 // Error already printed as JSON by commands
23 os.Exit(1) 8 os.Exit(1)
24 } 9 }
25} 10}