This is a basic FastAPI template.
-
Install dependencies:
pip install -r requirements.txt -
Run the app with Uvicorn server:
uvicorn app:app --reload
The API has a root endpoint that returns a JSON message.
- GET / : Returns
{ "message": "Hello, World!" }