Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into merge-upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikStreek committed Feb 7, 2025
2 parents 2f1047e + bf55b3b commit d15eff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
DELETE_AFTER_DAYS: ${DELETE_AFTER_DAYS:-30}
ports:
- "${APP_FRONTEND_PORT:-4200}:4200"
- "${APP_BACKTEND_PORT:-3000}:3000"
- "${APP_BACKEND_PORT:-3000}:3000"
# karma server
- 9876:9876
volumes:
Expand Down
2 changes: 1 addition & 1 deletion teammapper-backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { MapModule } from './map/map.module'
TypeOrmModule.forRoot(configService.getTypeOrmConfig()),
MapModule,
ServeStaticModule.forRoot({
rootPath: join(__dirname, '..', 'client'),
rootPath: join(__dirname, '..', 'client', 'browser'),
}),
],
})
Expand Down

0 comments on commit d15eff1

Please sign in to comment.