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

17 lines
321 B
CUE

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