Backend for a kanban app made in FastAPI
Find a file
Borgia Leiva 5275838fc7
Merge pull request #2 from a-mayb3/devel
Finished development and testing for minimum viable release for assigment submission
2026-02-12 11:55:14 +01:00
routers Fixed adding collaborator 2026-02-10 13:02:01 +01:00
schemas change user addition to project to be based off of email address and not user id 2026-02-10 12:36:40 +01:00
.gitignore ignoring app.log 2026-02-02 11:27:54 +01:00
database.py Started implementing auth 2026-02-02 11:09:27 +01:00
LICENSE Add GNU AGPL v3 license 2026-01-26 12:44:16 +00:00
main.py Added samsple frontends repos in docs description 2026-02-10 13:40:13 +01:00
models.py Started fixing GET /projects/ 2026-02-02 13:51:09 +01:00
README.md Make badges clickable and correct clone command 2026-02-04 08:03:29 +00:00
requirements.txt added crypt and auth dependencies 2026-02-02 11:05:11 +01: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=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