3
0
Files
corteza/app/options/db.cue
2022-08-01 18:22:55 +02:00

18 lines
335 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
DB: schema.#optionsGroup & {
handle: "db"
expIdent: "DB"
options: {
DSN: {
defaultValue: "sqlite3://file::memory:?cache=shared&mode=memory"
description: "Database connection string."
}
}
title: "Connection to data store backend"
}