13 lines
249 B
Bash
Executable File
13 lines
249 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [[ ! -d .venv ]]; then
|
|
python3 -m venv .venv
|
|
fi
|
|
|
|
source .venv/bin/activate
|
|
pip install -r backend/requirements.txt
|
|
uvicorn backend.app.main:app --host 0.0.0.0 --port 8088 --reload
|