Загрузить файлы в «/»

This commit is contained in:
2026-04-23 06:40:34 +00:00
parent 9caa996d31
commit 1a5c27dbe9
5 changed files with 383 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
echo "== RemnaWave Panel: install/start =="
if [[ ! -f .env ]]; then
cp .env.example .env
echo "Created .env from .env.example"
echo "Edit .env and set API_BASE_URL/API_KEY before first real use."
fi
docker compose up -d --build
echo "Panel started: http://localhost:8080"