mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
ebab3b60a8
Fixed seed/initial_tasks data which created tasks in a non-sequential order (tested on Postgres) Added production-like example configuration
18 lines
331 B
JSON
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"
|
|
}
|
|
}
|