Initial commit: Cloud Control Panel

This commit is contained in:
2026-01-10 01:24:08 +07:00
commit 01d99c5054
69 changed files with 12697 additions and 0 deletions

25
Makefile Executable file
View File

@@ -0,0 +1,25 @@
.PHONY: build up down install logs bash migrate
build:
docker compose build --no-cache
up:
docker compose up -d
down:
docker compose down
install:
docker compose run --rm \
-v $(PWD):/var/www \
app composer install
logs:
docker compose logs -f
bash:
docker compose exec app sh
migrate:
docker compose exec app php /var/www/db/migrate.php