Ensure you have the following installed:
- Python 3.8+
git clone https://github.com/Suraj1089/get-five-minute-activites
cd get-five-minute-activites
# On macOS/Linux
python -m venv venv
source venv/bin/activate
# On Windows
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
uvicorn main:app --reload
main
refers to the filename (main.py)app
refers to the FastAPI instance--reload
enables automatic reload on code changes
- Swagger UI: http://127.0.0.1:8000/docs
- ReDoc: http://127.0.0.1:8000/redoc