mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 19:56:41 +00:00
16 lines
326 B
Plaintext
16 lines
326 B
Plaintext
module.exports = ({ env }) => ({
|
|
defaultConnection: 'default',
|
|
connections: {
|
|
default: {
|
|
connector: 'bookshelf',
|
|
settings: {
|
|
client: 'sqlite',
|
|
filename: env('DATABASE_FILENAME', '<%= settings.filename %>'),
|
|
},
|
|
options: {
|
|
useNullAsDefault: true,
|
|
},
|
|
},
|
|
},
|
|
});
|