32 lines
635 B
CUE
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"
|
|
}
|