From ae384f0860c7ef98cc3de1763886566dc6ca903c Mon Sep 17 00:00:00 2001 From: bndw Date: Sun, 28 Dec 2025 09:59:56 -0800 Subject: files --- internal/state/state.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'internal/state') diff --git a/internal/state/state.go b/internal/state/state.go index c7c7dd4..eb1dee8 100644 --- a/internal/state/state.go +++ b/internal/state/state.go @@ -20,10 +20,12 @@ type Host struct { // App represents a deployed application or static site type App struct { - Type string `json:"type"` // "app" or "static" + Type string `json:"type"` // "app" or "static" Domain string `json:"domain"` Port int `json:"port,omitempty"` // only for type="app" Env map[string]string `json:"env,omitempty"` // only for type="app" + Args string `json:"args,omitempty"` // only for type="app" + Files []string `json:"files,omitempty"` // only for type="app" } const ( -- cgit v1.2.3