13 lines
199 B
Bash
Executable File
13 lines
199 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
APP_DIR="${APP_DIR:-/oxpanel/app}"
|
|
|
|
CORES=$(nproc)
|
|
WORKERS=$((2 * CORES + 1))
|
|
|
|
cd "${APP_DIR}/frontend" && yarn dev &
|
|
cd "${APP_DIR}" && python run_uvicorn.py &
|
|
|
|
wait -n
|
|
|
|
exit $? |