feat: Add Next.js 15 glassmorphism frontend for DAARION MVP

This commit is contained in:
Apple
2025-11-26 09:20:33 -08:00
parent 5ce1bf1035
commit 2f30f40c0b
24 changed files with 7831 additions and 5 deletions

30
docker-compose.web.yml Normal file
View File

@@ -0,0 +1,30 @@
# DAARION Web Frontend Docker Compose
# Deploy alongside MVP services
version: '3.8'
services:
web:
build:
context: ./apps/web
dockerfile: Dockerfile
container_name: daarion-web
restart: unless-stopped
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_BASE_URL=
networks:
- dagi-network
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks:
dagi-network:
external: true