Files
plane/monitor/cli/pkg/constants/constants.go
Nikhil 6040408d90 dev: primev2 (#1005)
* 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>
2024-09-02 15:28:43 +05:30

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"
)