Skip to content

Commit df0901b

Browse files
fix: port 8000 standartization and cleanup
1 parent 10c8b70 commit df0901b

5 files changed

Lines changed: 3 additions & 39 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ pip install -r requirements.txt
2727
1. Run the API (from repo root)
2828

2929
```bash
30-
python -m flask --app server.app:app run
30+
python -m flask --app server.app:app run --port 8000
3131
```
3232

33-
Visit `http://127.0.0.1:5000/healthz` and Swagger docs at the Flask-RESTX UI
33+
Visit `http://127.0.0.1:8000/healthz` and Swagger docs at the Flask-RESTX UI
3434
(root or `/` depending on config).
3535

3636
### Health and readiness

act.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

deploy.sh

Lines changed: 0 additions & 31 deletions
This file was deleted.

example.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from server.app import app
77

88
if __name__ == "__main__":
9-
app.run(debug=True, host="0.0.0.0", port=3000)
9+
app.run(debug=True, host="0.0.0.0", port=8000)

0 commit comments

Comments
 (0)