Task management software w/ FastAPI Done following cassiobotaro's tutorial, for learning purposes.
access it on railway.
to interact with endpoints on the docs:
to check the tasks list:
- clone this repo
- create the virtual environment:
python -m venv .venv
- activate it:
source .venv/bin/activate # linux
.venv/Scripts/activate # windows
- install base requirements:
pip install -r requirements.txt
- or, to install development requirements:
pip install -r dev-requirements.txt
- run on localhost:8000:
uvicorn --reload task_manager.manager:app
- execute tests:
python -m pytest