homebox/backend/internal/sys/config/conf_database.go

12 lines
310 B
Go
Raw Normal View History

2022-08-29 18:30:36 -08:00
package config
const (
2022-09-03 19:14:19 -08:00
DriverSqlite3 = "sqlite3"
2022-08-29 18:30:36 -08:00
)
type Storage struct {
// Data is the path to the root directory
Data string `yaml:"data" conf:"default:./.data"`
SqliteURL string `yaml:"sqlite-url" conf:"default:./.data/homebox.db?_pragma=busy_timeout=999&_pragma=journal_mode=WAL&_fk=1"`
2022-08-29 18:30:36 -08:00
}