3
0
Files
corteza/app/options/environment.cue
2022-01-29 12:18:00 +01:00

17 lines
264 B
CUE

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