A simple todo list server, created with fast API
conda create -n todolist python=3.9 pip -y
conda activate todolist
pip install requirements.txt
mongo
Using Docker
docker run -d -p 27017-27019:27017-27019 --name mongodb mongo
uvicorn main:app --reload
Got to localhost:8000/docs to see the docs and make requests