A repo for getting a basic backend prototype working in Azure using FastAPI
Copy the .env.example file to .env file:
cp .env.example .env
Set the FRONTEND_URL to the URL of where your frontend is deployed.
Set the MONGODB_URI to the URI of where your mongodb instance is deployed.
pip install -r requirements.txt
uvicorn main:app --port <port_same_as_specified_in_frontend> --reload