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

24 lines
444 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
template: schema.#optionsGroup & {
handle: "template"
title: "Rendering engine"
options: {
renderer_gotenberg_address: {
default: ""
description: "Gotenberg rendering container address."
}
renderer_gotenberg_enabled: {
type: "bool"
default: "false"
description: "Is Gotenberg rendering container enabled."
}
}
}