mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
24 lines
530 B
Go
24 lines
530 B
Go
package constants
|
|
|
|
// Keys
|
|
type key int
|
|
|
|
const (
|
|
META_KEY key = iota
|
|
)
|
|
|
|
// -------------- Env variables constants -------------------
|
|
const (
|
|
MACHINE_SIGNATURE = "MACHINE_SIGNATURE"
|
|
PRIME_HOST = "PRIME_HOST"
|
|
APP_DOMAIN = "APP_DOMAIN"
|
|
APP_VERSION = "APP_VERSION"
|
|
API_HOSTNAME = "API_HOSTNAME"
|
|
INSTANCE_ID = "INSTANCE_ID"
|
|
PORT = "PORT"
|
|
DEPLOY_PLATFORM = "DEPLOY_PLATFORM"
|
|
DOCKER_COMPOSE = "DOCKER_COMPOSE"
|
|
KUBERNETES = "KUBERNETES"
|
|
COOLIFY = "COOLIFY"
|
|
)
|