Backend for a kanban app made in FastAPI
Find a file
Borgia Leiva 2f924496af
Initialize README with project details
Added project description, tech stack, and run instructions.
2026-01-27 10:59:53 +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 Initialize README with project details 2026-01-27 10:59:53 +00:00

Little backend for a kanban project managment app.

TechStack

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

How to run

*nix (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
uvicorn main:app --reload