Setup tests
This commit is contained in:
parent
7d86ef39c1
commit
28e97fb523
2 changed files with 17 additions and 27 deletions
|
@ -1,10 +1,26 @@
|
||||||
{
|
{
|
||||||
"database": {
|
"development": {
|
||||||
"username": "root",
|
"username": "root",
|
||||||
"password": null,
|
"password": null,
|
||||||
"database": "database_test",
|
"database": "database_test",
|
||||||
"host": "127.0.0.1",
|
"host": "127.0.0.1",
|
||||||
"dialect": "postgres",
|
"dialect": "postgres",
|
||||||
"operatorsAliases": false
|
"operatorsAliases": false
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"username": "letu",
|
||||||
|
"password": "letu",
|
||||||
|
"database": "letu",
|
||||||
|
"host": "postgres",
|
||||||
|
"dialect": "postgres",
|
||||||
|
"operatorsAliases": false
|
||||||
|
},
|
||||||
|
"production": {
|
||||||
|
"username": "root",
|
||||||
|
"password": null,
|
||||||
|
"database": "database_production",
|
||||||
|
"host": "127.0.0.1",
|
||||||
|
"dialect": "postgres",
|
||||||
|
"operatorsAliases": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"development": {
|
|
||||||
"username": "root",
|
|
||||||
"password": null,
|
|
||||||
"database": "database_test",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"dialect": "postgres",
|
|
||||||
"operatorsAliases": false
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"username": "root",
|
|
||||||
"password": null,
|
|
||||||
"database": "database_test",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"dialect": "postgres",
|
|
||||||
"operatorsAliases": false
|
|
||||||
},
|
|
||||||
"production": {
|
|
||||||
"username": "root",
|
|
||||||
"password": null,
|
|
||||||
"database": "database_production",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"dialect": "postgres",
|
|
||||||
"operatorsAliases": false
|
|
||||||
}
|
|
||||||
}
|
|
Reference in a new issue