Skip to content

Commit

Permalink
feat: set proper package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
MSzalowski committed Oct 21, 2024
1 parent 9f59086 commit 118093e
Show file tree
Hide file tree
Showing 57 changed files with 955 additions and 429 deletions.
29 changes: 29 additions & 0 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions backend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ async function bootstrap() {
.setTitle('GovTool Voting Pillar API')
.setDescription('API for the GovTool Voting Pillar')
.setVersion('1.0')
.addTag('proposal')
.build();

const document = SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api', app, document);

await app.listen(3001);
await app.listen(3002);
}
bootstrap();
Loading

0 comments on commit 118093e

Please sign in to comment.