1Panel/backend/constant/runtime.go

36 lines
725 B
Go
Raw Normal View History

package constant
const (
2023-03-31 14:02:28 +08:00
ResourceLocal = "local"
ResourceAppstore = "appstore"
RuntimeNormal = "normal"
RuntimeError = "error"
RuntimeBuildIng = "building"
RuntimeStarting = "starting"
RuntimeRunning = "running"
RuntimeReCreating = "recreating"
RuntimeStopped = "stopped"
RuntimeUnhealthy = "unhealthy"
RuntimeCreating = "creating"
2023-04-02 16:54:00 +08:00
RuntimePHP = "php"
RuntimeNode = "node"
2024-06-26 22:39:25 +08:00
RuntimeJava = "java"
2024-07-01 18:35:15 +08:00
RuntimeGo = "go"
RuntimeProxyUnix = "unix"
RuntimeProxyTcp = "tcp"
RuntimeUp = "up"
RuntimeDown = "down"
RuntimeRestart = "restart"
RuntimeInstall = "install"
RuntimeUninstall = "uninstall"
RuntimeUpdate = "update"
RuntimeNpm = "npm"
RuntimeYarn = "yarn"
)