3
0
Files
corteza/app/options/environment.cue
2022-02-08 09:13:56 +01:00

17 lines
270 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
environment: schema.#optionsGroup & {
handle: "environment"
options: {
environment: {
defaultValue: "production"
env: "ENVIRONMENT"
}
}
title: "Environment"
}