chore: initialize WanderQ MiniAPP 2.0 repository

This commit is contained in:
inman
2026-07-23 15:48:34 +08:00
commit b4c0a1c516
93 changed files with 53525 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
postgres:
image: postgres:16-alpine
container_name: miniapp-postgres
restart: unless-stopped
environment:
POSTGRES_DB: miniapp
POSTGRES_USER: miniapp
POSTGRES_PASSWORD: miniapp_dev_password
ports:
- "5433:5432"
volumes:
- miniapp-postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U miniapp -d miniapp"]
interval: 5s
timeout: 5s
retries: 10
redis:
image: redis:7-alpine
container_name: miniapp-redis
restart: unless-stopped
ports:
- "6380:6379"
volumes:
miniapp-postgres-data: