vpn integration

This commit is contained in:
2026-04-11 21:51:30 +02:00
parent 4671e5da63
commit c4d27e9842
26 changed files with 2566 additions and 899 deletions
Regular → Executable
+4 -2
View File
@@ -1,10 +1,12 @@
#!/usr/bin/env bash
APP_DIR="${APP_DIR:-/oxpanel/app}"
CORES=$(nproc)
WORKERS=$((2 * CORES + 1))
cd /app/frontend && yarn dev &
cd /app && python manage.py runserver 0.0.0.0:8000 &
cd "${APP_DIR}/frontend" && yarn dev &
cd "${APP_DIR}" && python run_uvicorn.py &
wait -n