From 2f924496af20f8a0d7a349e7e3c91cff3ddd216b Mon Sep 17 00:00:00 2001 From: Borgia Leiva Date: Tue, 27 Jan 2026 10:59:53 +0000 Subject: [PATCH] Initialize README with project details Added project description, tech stack, and run instructions. --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fff9699 --- /dev/null +++ b/README.md @@ -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 +```