Skip to content

Commit

Permalink
Merge a1e0198 into 2c58830
Browse files Browse the repository at this point in the history
  • Loading branch information
chialuka committed Jul 25, 2019
2 parents 2c58830 + a1e0198 commit 2aeebb0
Show file tree
Hide file tree
Showing 8 changed files with 1,458 additions and 332 deletions.
4 changes: 3 additions & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
PORT=

DB_URL_DEV=
DB_URL_PRODUCTION=
NODE_ENV=
6 changes: 2 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
"root": true,
"env": {
"es6": true,
"node": true,
"jest/globals": true
},
"node": true
},
"extends": ["airbnb-base"],
"globals": {
"Atomics": "readonly",
Expand All @@ -14,7 +13,6 @@
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["jest"],
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
Expand Down
10 changes: 10 additions & 0 deletions .sequelizerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require("@babel/register");

const path = require('path');

module.exports = {
'config': path.resolve('server/database/config', 'config'),
'models-path': path.resolve('server/database/models'),
'seeders-path': path.resolve('server/database/seeders'),
'migrations-path': path.resolve('server/database/migrations')
}
Loading

0 comments on commit 2aeebb0

Please sign in to comment.