mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
38 lines
776 B
Plaintext
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"
|
|
}
|
|
}
|
|
} |