typeorm/config/parameters.json.dist
2016-10-09 23:15:54 +05:00

38 lines
776 B
Plaintext

{
"connections": {
"mysql": {
"host": "localhost",
"port": 3306,
"username": "root",
"password": "admin",
"database": "test"
},
"mysqlSecondary": {
"host": "localhost",
"port": 3306,
"username": "root",
"password": "admin",
"database": "test2"
},
"sqlite": {
"storage": "temp/sqlitedb.db"
},
"sqliteSecondary": {
"storage": "temp/sqlitedb-secondary.db"
},
"postgres": {
"host": "localhost",
"port": 5432,
"username": "root",
"password": "admin",
"database": "test"
},
"postgresSecondary": {
"host": "localhost",
"port": 5432,
"username": "root",
"password": "admin",
"database": "test2"
}
}
}