mirror of
https://github.com/strapi/strapi.git
synced 2025-07-16 05:22:05 +00:00
16 lines
196 B
JavaScript
16 lines
196 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Default db infos
|
|
*/
|
|
module.exports = {
|
|
sqlite: {
|
|
connection: {
|
|
filename: '.tmp/data.db',
|
|
},
|
|
useNullAsDefault: true,
|
|
},
|
|
postgres: {},
|
|
mysql: {},
|
|
};
|