run the fastapi server,
run the following command in the terminal
create a virtual enviroment
python -m venv venv
activate the virtual enviroment
source venv/bin/activate
install the required packages
pip install -r requirments.txt
run the server
uvicorn main:app --reload