separated dev configs

This commit is contained in:
bill bittner 2018-03-09 17:27:49 -08:00
parent bdd2d45ab5
commit 0c1f81cced
7 changed files with 6 additions and 14 deletions

View file

@ -0,0 +1,23 @@
module.exports = {
development: {
username: '',
password: '',
database: '',
host : '127.0.0.1',
dialect : 'mysql',
},
test: {
username: '',
password: '',
database: '',
host : '127.0.0.1',
dialect : 'mysql',
},
production: {
username: '',
password: '',
database: '',
host : '127.0.0.1',
dialect : 'mysql',
},
};