mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 21:10:13 +02:00
* restructured Proxy, Deploy/CLI-install contents * removed caddy assets fron release * fixed changes in variables.env * fixed action * test build * testing release * finalize the caddy changes * renamed proxy-ee to proxy. * chore: changed docker compose file swarm compatible * fix: added port no in proxy configuration * added Replica Envs for services * compose file for coolify * updated docker-compose * fix changes * updated docker-compose.yml * updated monitor to handle COOLIFY * updated deploy_platform value * pulled latest preview * updated variables env * fix merge conflicts * fix changes * fix changes * chore: coolify compose file * chore: added github action to upload coolify compose file on s3 * fixed monitor build * testing release build * updated branch-build-ee --------- Co-authored-by: Manish Gupta <manish@plane.so> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com>
23 lines
484 B
Go
23 lines
484 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"
|
|
INSTANCE_ID = "INSTANCE_ID"
|
|
PORT = "PORT"
|
|
DEPLOY_PLATFORM = "DEPLOY_PLATFORM"
|
|
DOCKER_COMPOSE = "DOCKER_COMPOSE"
|
|
KUBERNETES = "KUBERNETES"
|
|
COOLIFY = "COOLIFY"
|
|
)
|