Skip to content

Commit a74c17a

Browse files
Merge branch 'main' into 8-rework-yup-validation
2 parents 21d7313 + bef00f4 commit a74c17a

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://libertech-fr.github.io/sesame-orchestrator" target="blank"><img src="https://raw.githubusercontent.com/Libertech-FR/sesame-orchestrator/main/static/sesame-logo.svg" width="200" alt="Sesame Logo" /></a>
2+
<a href="https://libertech-fr.github.io/sesame-orchestrator" target="blank"><img src="./static/sesame-logo.svg" width="200" alt="Sesame Logo" /></a>
33
</p>
44
<p align="center">Sésame ochestrator - Synchronisation d'Identités Multi-sources</p>
55
<p align="center">

docker/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ services:
1010
volumes:
1111
- '..:/data'
1212
ports:
13-
- '3002:3000'
14-
- '9229:9229'
13+
- '4002:4000'
1514
networks:
1615
- dev
1716
sesame-redis:

src/main.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ declare const module: any;
6464
}
6565

6666
app.useGlobalFilters(new AllExceptionFilter(), new MongooseValidationFilter(), new IdentitiesValidationFilter());
67-
68-
await app.listen(3000, async (): Promise<void> => {
69-
Logger.log(`Application is running on port: ${process.env.PORT || 3000}`);
67+
await app.listen(4000, async (): Promise<void> => {
68+
Logger.log(`Application is running on port: 4000`);
7069
});
7170

7271
if (module.hot) {

0 commit comments

Comments
 (0)