mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 10:56:36 +00:00
33 lines
518 B
JavaScript
33 lines
518 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Default db infos
|
||
|
*/
|
||
|
module.exports = {
|
||
|
sqlite: {
|
||
|
connector: 'strapi-hook-bookshelf',
|
||
|
settings: {
|
||
|
client: 'sqlite',
|
||
|
filename: '.tmp/data.db',
|
||
|
},
|
||
|
options: {
|
||
|
useNullAsDefault: true,
|
||
|
},
|
||
|
},
|
||
|
postgres: {
|
||
|
connector: 'strapi-hook-bookshelf',
|
||
|
settings: {
|
||
|
client: 'postgres',
|
||
|
},
|
||
|
},
|
||
|
mysql: {
|
||
|
connector: 'strapi-hook-bookshelf',
|
||
|
settings: {
|
||
|
client: 'mysql',
|
||
|
},
|
||
|
},
|
||
|
mongo: {
|
||
|
connector: 'strapi-hook-mongoose',
|
||
|
},
|
||
|
};
|