mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-07-20 12:10:40 +08:00
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
This commit is contained in:
@@ -8,10 +8,10 @@
|
||||
"storage": "db/test.sqlite"
|
||||
},
|
||||
"production": {
|
||||
"username": "root",
|
||||
"password": null,
|
||||
"database": "database_production",
|
||||
"host": "127.0.0.1",
|
||||
"dialect": "mysql"
|
||||
"username": "postgres",
|
||||
"password": "",
|
||||
"database": "hackflowy",
|
||||
"host" : "localhost",
|
||||
"dialect" : "postgres"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"port": 3000,
|
||||
"database": {
|
||||
"username": "postgres",
|
||||
"password": "",
|
||||
"database": "hackflowy",
|
||||
"options" : {
|
||||
"dialect": "postgres",
|
||||
"host" : "localhost",
|
||||
"port" : "5432"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user