diff options
| author | Clawd <ai@clawd.bot> | 2026-02-17 07:54:26 -0800 |
|---|---|---|
| committer | Clawd <ai@clawd.bot> | 2026-02-17 07:54:26 -0800 |
| commit | 6b2c04728cd914f27ae62c1df0bf5df24ac9a628 (patch) | |
| tree | 8a103ac79194a05fae438b0da105589aaa6b78d9 /cmd/ship/version.go | |
| parent | 5e5de4ea1aa98f75d470e4a61644d4b9f100c4b0 (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/version.go')
| -rw-r--r-- | cmd/ship/version.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cmd/ship/version.go b/cmd/ship/version.go deleted file mode 100644 index 6e4314a..0000000 --- a/cmd/ship/version.go +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | package main | ||
| 2 | |||
| 3 | import ( | ||
| 4 | "fmt" | ||
| 5 | |||
| 6 | "github.com/spf13/cobra" | ||
| 7 | ) | ||
| 8 | |||
| 9 | var versionCmd = &cobra.Command{ | ||
| 10 | Use: "version", | ||
| 11 | Short: "Show version information", | ||
| 12 | Run: func(cmd *cobra.Command, args []string) { | ||
| 13 | fmt.Printf("ship version %s\n", version) | ||
| 14 | fmt.Printf(" commit: %s\n", commit) | ||
| 15 | fmt.Printf(" built: %s\n", date) | ||
| 16 | }, | ||
| 17 | } | ||
