Corrected running instructions

This commit is contained in:
Marta Borgia Leiva 2026-01-27 11:52:40 +00:00 committed by GitHub
parent 2f924496af
commit 0704ef9b15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,11 +9,12 @@ Little backend for a kanban project managment app.
![](https://skillicons.dev/icons?i=python,fastapi,sqlite,git,github) ![](https://skillicons.dev/icons?i=python,fastapi,sqlite,git,github)
## How to run ## How to run
### *nix (Linux, MacOS, BSD, etc...) ### *nix systems (Linux, MacOS, BSD, etc...)
```bash ```bash
git clone --depth=1 https://github.com/a-mayb3/Kanban_clone_backend git clone --depth=1 https://github.com/a-mayb3/Kanban_clone_backend
cd Kanban_clone_backend cd Kanban_clone_backend
python3 -m venv env python3 -m venv env
source env/bin/activate source env/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload uvicorn main:app --reload
``` ```