8 lines
193 B
Markdown
8 lines
193 B
Markdown
# From the web/ directory
|
|
cd web
|
|
|
|
# Install dependencies
|
|
pip install -r requirements-web.txt
|
|
|
|
# Run the server (note the module path: backend.main)
|
|
uvicorn backend.main:app --reload --port 8000 |