32 lines
356 B
Markdown
32 lines
356 B
Markdown
|
|
# Project Title
|
|
|
|
A brief description of what this project does and who it's for
|
|
|
|
|
|
## Run Locally
|
|
|
|
Clone the project
|
|
|
|
```bash
|
|
git clone https://link-to-project
|
|
```
|
|
|
|
Go to the project directory
|
|
|
|
```bash
|
|
cd my-project
|
|
```
|
|
|
|
Install dependencies
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
Start the server
|
|
|
|
```bash
|
|
uvicorn app.main:app --reload
|
|
```
|