forked from shadowfacts/shadowfacts.net
25 lines
426 B
JSON
25 lines
426 B
JSON
|
{
|
||
|
"type": "postgres",
|
||
|
"host": "localhost",
|
||
|
"port": 5432,
|
||
|
"username": "blog",
|
||
|
"password": "blog",
|
||
|
"database": "blog",
|
||
|
"synchronize": true,
|
||
|
"logging": true,
|
||
|
"entities": [
|
||
|
"built/entity/**/*.js"
|
||
|
],
|
||
|
"migrations": [
|
||
|
"built/migration/**/*.js"
|
||
|
],
|
||
|
"subscribers": [
|
||
|
"built/subscriber/**/*.js"
|
||
|
],
|
||
|
"cli": {
|
||
|
"entitiesDir": "lib/entity",
|
||
|
"migrationsDir": "lib/migration",
|
||
|
"subscribersDir": "lib/subscriber"
|
||
|
}
|
||
|
}
|