3
0
Files
corteza/server/app/options/db.cue
2023-10-26 17:09:57 +02:00

18 lines
322 B
CUE

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