A minimal and ready-to-use FastAPI REST API template for rapid project setup.
- FastAPI
- Hypercorn
- Python 3
Clone this repository and install the required packages:
pip install -r requirements.txtRun the server locally:
hypercorn main:app --reloadOpen your browser and access:
- API: http://localhost:8000
- OpenAPI Documentation (Swagger UI): http://localhost:8000/docs
- Redoc Documentation: http://localhost:8000/redoc
- To learn about how to use FastAPI with most of its features, you can visit the FastAPI Documentation
- To learn about Hypercorn and how to configure it, read their Documentation
