Backend for a kanban app made in FastAPI
Find a file
2026-01-27 11:52:40 +00:00
.gitignore Initial commit 2026-01-26 12:42:27 +00:00
LICENSE Add GNU AGPL v3 license 2026-01-26 12:44:16 +00:00
README.md Corrected running instructions 2026-01-27 11:52:40 +00:00

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