Kanban_clone_backend/README.md

474 B

Little backend for a kanban project managment app.

TechStack

  • Python3
  • FastAPI + Uvicorn
  • SQLite + SQLAlchemy
  • git + GitHub (duh)

How to run

*nix systems (Linux, MacOS, BSD, etc...)

git clone --depth=1 https://github.com/a-mayb3/Kanban_clone_backend
cd Kanban_clone_backend
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload