Backend for a kanban app made in FastAPI
Find a file
Borgia Leiva 8278a22a57
Enhance README with badges and format updates
Updated README to include badges and improved formatting.
2026-02-04 08:02:03 +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 Enhance README with badges and format updates 2026-02-04 08:02:03 +00:00

Little backend for a kanban project managment app.

Gitea Stars GitHub Repo stars

TechStack

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

How to run

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

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