Skip to content

Commit

Permalink
Merge pull request #163 from bcgov/disable-db-load-on-startup
Browse files Browse the repository at this point in the history
Disable function that updates database on startup
  • Loading branch information
barrfalk authored Sep 7, 2023
2 parents 09a3b1d + 0acaa7b commit 6339564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ async function bootstrap() {
const port = process.env.POSTGRESQL_HOST.includes('database') ? 3000 : 3001;
await app.listen(port);
const appService = app.get(AppService);
await appService.initializeDb();
// await appService.initializeDb();
}
bootstrap();

0 comments on commit 6339564

Please sign in to comment.