mirror of
https://github.com/a-mayb3/Kanban_clone_backend.git
synced 2026-03-21 10:05:38 +01:00
Backend for a kanban app made in FastAPI
Finished development and testing for minimum viable release for assigment submission |
||
|---|---|---|
| routers | ||
| schemas | ||
| .gitignore | ||
| database.py | ||
| LICENSE | ||
| main.py | ||
| models.py | ||
| README.md | ||
| requirements.txt | ||
Little backend for a kanban project managment app.
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