3
0
Files
corteza/server/app/options/discovery.cue
2022-11-17 17:33:24 +01:00

32 lines
635 B
CUE

package options
import (
"github.com/cortezaproject/corteza/server/codegen/schema"
)
discovery: schema.#optionsGroup & {
handle: "discovery"
options: {
enabled: {
type: "bool"
defaultGoExpr: "false"
description: "Enable discovery endpoints"
}
debug: {
type: "bool"
defaultGoExpr: "false"
description: "Enable discovery related activity info"
}
corteza_domain: {
type: "string"
description: "Indicates host of corteza compose webapp"
}
base_url: {
type: "string"
description: "Indicates host of corteza discovery server"
}
}
title: "Discovery"
}