Added Docker

This commit is contained in:
Tiemen van Olst
2025-09-09 08:52:28 +02:00
parent 7f1595dddd
commit 72d9f5e642
29 changed files with 10623 additions and 193 deletions

8
.sequelizerc Normal file
View File

@@ -0,0 +1,8 @@
const path = require('path');
module.exports = {
'config': path.resolve('server/database', 'config.js'),
'models-path': path.resolve('server/database', 'models'),
'seeders-path': path.resolve('server/database', 'seeders'),
'migrations-path': path.resolve('server/database', 'migrations')
};