new changes

This commit is contained in:
Niranjan
2026-04-07 20:29:49 +05:30
parent 8fe63c7cf4
commit 31fe556bb0
79 changed files with 2917 additions and 0 deletions

11
scripts/bootstrap-dev.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
cp -n .env.example .env || true
docker compose --env-file .env -f docker-compose.yakpanel.yml up -d --build
docker compose --env-file .env -f docker-compose.yakpanel.yml run --rm db-migrate
docker compose --env-file .env -f docker-compose.yakpanel.yml ps
echo "YakPanel dev stack is ready."