mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-14 03:36:01 +00:00
8 lines
141 B
Bash
8 lines
141 B
Bash
#!/bin/bash
|
|
|
|
# Start api
|
|
cd /project/api && pdm run python -m uvicorn backend.app:app --reload --host 0.0.0.0 --port 8000 &
|
|
|
|
wait -n
|
|
exit $?
|