mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
7312c1b8bb
Created seeds to initialize database with dummy tasks. Introduce config module to handle configurations per environment. See https://github.com/lorenwest/node-config Updated README.md to reflect changes.
18 lines
321 B
JSON
18 lines
321 B
JSON
{
|
|
"development": {
|
|
"dialect": "sqlite",
|
|
"storage": "db/development.sqlite"
|
|
},
|
|
"test": {
|
|
"dialect": "sqlite",
|
|
"storage": "db/test.sqlite"
|
|
},
|
|
"production": {
|
|
"username": "root",
|
|
"password": null,
|
|
"database": "database_production",
|
|
"host": "127.0.0.1",
|
|
"dialect": "mysql"
|
|
}
|
|
}
|