Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sample-apps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ Overview :
- `flask-postgres-gevent/` is a Flask app with gunicorn & gevent, runs async.
- it runs **multi-threaded & async**
- Runs on 8110. Without Aikido runs on 8111
- `fastapi-postgres-uvicorn/` is a Fastapi app using Postgres with uvicorn, runs async.
- it runs **multi-threaded & async**
- Runs on 8112. Without Aikido runs on 8113
4 changes: 2 additions & 2 deletions sample-apps/fastapi-postgres-uvicorn/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ../common.mk

PORT = 8106
PORT_DISABLED = 8107
PORT = 8112
PORT_DISABLED = 8113

.PHONY: run
run: install
Expand Down
Loading