Skip to content

Commit

Permalink
fix(e2e): update ormconfig.ci.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 21, 2024
1 parent 985751a commit cfe81f3
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/server/ormconfig.ci.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "",
"database": "postgres",
"synchronize": false,
"migrationsRun": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"migrationsDir": "src/migration"
}
}
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "runner",
"password": "",
"database": "postgres",
"synchronize": false,
"migrationsRun": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"migrationsDir": "src/migration"
}
}

0 comments on commit cfe81f3

Please sign in to comment.