summaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/state/state.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/state/state.go b/internal/state/state.go
index b99e4ca..c6de34a 100644
--- a/internal/state/state.go
+++ b/internal/state/state.go
@@ -15,8 +15,9 @@ type State struct {
15 15
16// Host represents deployment state for a single VPS 16// Host represents deployment state for a single VPS
17type Host struct { 17type Host struct {
18 NextPort int `json:"next_port"` 18 NextPort int `json:"next_port"`
19 Apps map[string]*App `json:"apps"` 19 BaseDomain string `json:"base_domain,omitempty"`
20 Apps map[string]*App `json:"apps"`
20} 21}
21 22
22// App represents a deployed application or static site 23// App represents a deployed application or static site