17 lines
321 B
CUE
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"
|
|
}
|