fix: docker-compose up command fails (#227)

This commit is contained in:
kimatata
2025-05-25 08:56:43 +09:00
committed by GitHub
parent 575c4cbedb
commit 13e0727914
6 changed files with 20 additions and 20 deletions

18
backend/config/config.js Normal file
View File

@@ -0,0 +1,18 @@
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,
}
};