22 lines
235 B
Markdown
22 lines
235 B
Markdown
# CodeTutor Backend
|
|
|
|
FastAPI backend for the CodeTutor coding interview preparation application.
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
pip install -e ".[dev]"
|
|
```
|
|
|
|
## Development
|
|
|
|
```bash
|
|
uvicorn src.main:app --reload
|
|
```
|
|
|
|
## Testing
|
|
|
|
```bash
|
|
pytest
|
|
```
|