Initial Commit
This commit is contained in:
23
backend/ormconfig.json
Normal file
23
backend/ormconfig.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "postgres",
|
||||
"host": "localhost",
|
||||
"port": 5432,
|
||||
"username": "db",
|
||||
"password": "db",
|
||||
"database": "db",
|
||||
"synchronize": true,
|
||||
"entities": [
|
||||
"api/entities/*.ts"
|
||||
],
|
||||
"subscribers": [
|
||||
"api/subscribers/*.ts"
|
||||
],
|
||||
"migrations": [
|
||||
"api/migrations/*.ts"
|
||||
],
|
||||
"cli": {
|
||||
"entitiesDir": "api/entities",
|
||||
"migrationsDir": "api/migrations",
|
||||
"subscribersDir": "api/subscribers"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user