3
0
Files
corteza/server/app/options/environment.cue
2022-11-17 17:33:24 +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"
}