Working backend setup with endpoints and database setup for adventures.

This commit is contained in:
2019-02-18 22:42:52 +01:00
parent ba1070d5b2
commit cfd0b88987
26 changed files with 3083 additions and 0 deletions

8
.sequelizerc Normal file
View File

@@ -0,0 +1,8 @@
const path = require('path');
module.exports = {
"config": path.resolve('./src/db/config', 'config.json'),
"models-path": path.resolve('./src/db/models'),
"seeders-path": path.resolve('./src/db/seeders'),
"migrations-path": path.resolve('./src/db/migrations')
};