type Environment string
Environment specifies which environment the app is running in.
type State string
State specifies which stage the app is in.
const Dev Environment = "development"
Dev specifies the app is running in the development environment.
const Test Environment = "test"
Test specifies the app is running in the test environment.