Skip to content

Commit

Permalink
Revert "update port"
Browse files Browse the repository at this point in the history
This reverts commit 857345c.
  • Loading branch information
dzencot committed Sep 12, 2024
1 parent 857345c commit fdca60d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ See [Makefile](./Makefile)

```bash
make setup
make start # Open http://localhost:5037/swagger
make start # Open http://localhost:5000/swagger
```

---
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ services:
build:
context: .
ports:
- '5037:5037'
- '4010:4010'
environment:
PORT: 5037
PORT: 4010
volumes:
- ./:/app
2 changes: 1 addition & 1 deletion server/bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import app from '../index.js';

const port = process.env.PORT || 5037;
const port = process.env.PORT || 5000;
const host = process.env.host || '0.0.0.0';

console.log('Port: ', port);
Expand Down

0 comments on commit fdca60d

Please sign in to comment.