7 lines
177 B
Bash
7 lines
177 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Ensure we're in the correct directory
|
||
|
cd "$(dirname "$0")" || exit
|
||
|
|
||
|
# Activate the Poetry environment and run the FastAPI app
|
||
|
poetry run uvicorn main:app --reload
|