1Panel/backend/constant/runtime.go
zhengkunwang 38d1cac5d9
Some checks failed
Build Test / build-linux-binary (push) Has been cancelled
Build / SonarCloud (push) Has been cancelled
sync2gitee / repo-sync (push) Has been cancelled
feat(runtime): Add .NET runtime (#7155)
2024-11-24 09:11:23 +08:00

38 lines
784 B
Go

package constant
const (
ResourceLocal = "local"
ResourceAppstore = "appstore"
RuntimeNormal = "normal"
RuntimeError = "error"
RuntimeBuildIng = "building"
RuntimeStarting = "starting"
RuntimeRunning = "running"
RuntimeReCreating = "recreating"
RuntimeStopped = "stopped"
RuntimeUnhealthy = "unhealthy"
RuntimeCreating = "creating"
RuntimePHP = "php"
RuntimeNode = "node"
RuntimeJava = "java"
RuntimeGo = "go"
RuntimePython = "python"
RuntimeDoNet = "donet"
RuntimeProxyUnix = "unix"
RuntimeProxyTcp = "tcp"
RuntimeUp = "up"
RuntimeDown = "down"
RuntimeRestart = "restart"
RuntimeInstall = "install"
RuntimeUninstall = "uninstall"
RuntimeUpdate = "update"
RuntimeNpm = "npm"
RuntimeYarn = "yarn"
)