2023-03-30 08:47:47 +00:00
|
|
|
package constant
|
|
|
|
|
|
|
|
const (
|
2023-03-31 06:02:28 +00:00
|
|
|
ResourceLocal = "local"
|
|
|
|
ResourceAppstore = "appstore"
|
2023-03-30 08:47:47 +00:00
|
|
|
|
2023-09-25 09:50:14 +00:00
|
|
|
RuntimeNormal = "normal"
|
|
|
|
RuntimeError = "error"
|
|
|
|
RuntimeBuildIng = "building"
|
|
|
|
RuntimeStarting = "starting"
|
|
|
|
RuntimeRunning = "running"
|
|
|
|
RuntimeReCreating = "recreating"
|
2023-09-26 14:50:16 +00:00
|
|
|
RuntimeStopped = "stopped"
|
|
|
|
RuntimeUnhealthy = "unhealthy"
|
|
|
|
RuntimeCreating = "creating"
|
2023-04-02 08:54:00 +00:00
|
|
|
|
2023-09-25 09:50:14 +00:00
|
|
|
RuntimePHP = "php"
|
|
|
|
RuntimeNode = "node"
|
2023-04-04 10:54:04 +00:00
|
|
|
|
|
|
|
RuntimeProxyUnix = "unix"
|
|
|
|
RuntimeProxyTcp = "tcp"
|
2023-09-26 14:50:16 +00:00
|
|
|
|
|
|
|
RuntimeUp = "up"
|
|
|
|
RuntimeDown = "down"
|
|
|
|
RuntimeRestart = "restart"
|
2023-10-10 09:34:28 +00:00
|
|
|
|
|
|
|
RuntimeInstall = "install"
|
|
|
|
RuntimeUninstall = "uninstall"
|
|
|
|
RuntimeUpdate = "update"
|
|
|
|
|
|
|
|
RuntimeNpm = "npm"
|
|
|
|
RuntimeYarn = "yarn"
|
2023-03-30 08:47:47 +00:00
|
|
|
)
|