Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 938 Bytes

README.md

File metadata and controls

55 lines (36 loc) · 938 Bytes

task-manager

Task management software w/ FastAPI Done following cassiobotaro's tutorial, for learning purposes.

live preview

access it on railway.

to interact with endpoints on the docs:

https://task-manager-production.up.railway.app/docs

to check the tasks list:

https://task-manager-production.up.railway.app/tasks

how to run

  • 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