mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* feat: added cron for updating feature flags on interval * feat: added logic for updating seats in monitor * feat: updated sync handler for using prime sync endpoint * feat: added instance initialization on monitor boot * chore: added new vars for monitor * fix: license seats purchase validation flow * dev: update invite return response * remove: workspace license task to avoid creation of duplicate licenses * dev: add more seats flow. * fix: resync licenses * chore: subscription portal endpoint --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
21 lines
429 B
Go
21 lines
429 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"
|
|
)
|