14 lines
277 B
Markdown
14 lines
277 B
Markdown
# CargoTrace FastAPI Backend
|
|
|
|
FastAPI backend service for the CargoTrace platform.
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
python -m venv .venv
|
|
source .venv/bin/activate # Linux/Mac
|
|
# or .venv\Scripts\activate # Windows
|
|
pip install -r requirements.txt
|
|
uvicorn app.main:app --reload
|
|
```
|