3
0
Files
corteza/app/options/template.cue
2022-02-08 09:13:56 +01:00

23 lines
425 B
CUE

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