Files
HackFlowy/config/database.json
T
DC* ebab3b60a8 Changed configuration parameters' names to match sequelize nomemclature
Fixed seed/initial_tasks data which created tasks in a non-sequential order (tested on Postgres)
Added production-like example configuration
2014-08-08 00:47:38 -03:00

18 lines
331 B
JSON

{
"development": {
"dialect": "sqlite",
"storage": "db/development.sqlite"
},
"test": {
"dialect": "sqlite",
"storage": "db/test.sqlite"
},
"production": {
"username": "postgres",
"password": "",
"database": "hackflowy",
"host" : "localhost",
"dialect" : "postgres"
}
}