Initialize README with project details

Added project description, tech stack, and run instructions.
This commit is contained in:
Marta Borgia Leiva 2026-01-27 10:59:53 +00:00 committed by GitHub
parent 0dae277342
commit 2f924496af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
README.md Normal file
View file

@ -0,0 +1,19 @@
Little backend for a kanban project managment app.
## TechStack
- Python3
- FastAPI + Uvicorn
- SQLite + SQLAlchemy
- git + GitHub (duh)
![](https://skillicons.dev/icons?i=python,fastapi,sqlite,git,github)
## How to run
### *nix (Linux, MacOS, BSD, etc...)
```bash
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
```