Kanban_clone_backend/README.md
Borgia Leiva 4722c4cf99
Make badges clickable and correct clone command
Updated badge links to be clickable and fixed clone command.
2026-02-04 08:03:29 +00:00

976 B

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=1 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