Storage
Storage configuration describes which database should be used for data persistence and the connection string required to connect to the database. This information is organized in 2 separate configuration files:
db.conf
- database configurationdb.<database>.conf
- datasource configuration
Database configuration
Database configuration holds the datasource configuration filename (with no extension). The content of this configuration file will then be loaded and used as the connection string for the database. The filename should have the following format: db.<database>
The database configuration is stored in the config/db.conf
.
SQLite Config
Postgres Config
Datasource Configs
They hold the connection string used to connect to the chosen database.
Sqlite Datasource Config
Can be found in config/db.sqlite.conf
Postgres Datasource Config
Can be found in config/db.postgres.conf
Last updated