19 lines
359 B
JavaScript
19 lines
359 B
JavaScript
const path = require('path');
|
|
|
|
const databasePath = path.resolve(__dirname, '../../database/database.sqlite');
|
|
|
|
module.exports = {
|
|
development: {
|
|
dialect: 'sqlite',
|
|
storage: databasePath,
|
|
},
|
|
test: {
|
|
dialect: 'sqlite',
|
|
storage: databasePath,
|
|
},
|
|
production: {
|
|
dialect: 'sqlite',
|
|
storage: databasePath,
|
|
}
|
|
};
|