feat: Add CHORUS teaser website with mobile-responsive design
- Created complete Next.js 15 teaser website with CHORUS brand styling - Implemented mobile-responsive 3D logo (128px mobile, 512px desktop) - Added proper Exo font loading via Next.js Google Fonts for iOS/Chrome compatibility - Built comprehensive early access form with GDPR compliance and rate limiting - Integrated PostgreSQL database with complete schema for lead capture - Added scroll indicators that auto-hide when scrolling begins - Optimized mobile modal forms with proper scrolling and submit button access - Deployed via Docker Swarm with Traefik SSL termination at chorus.services - Includes database migrations, consent tracking, and email notifications 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
54
docker/docker-compose.dev.yml
Normal file
54
docker/docker-compose.dev.yml
Normal file
@@ -0,0 +1,54 @@
|
||||
# Docker Compose Override for Development
|
||||
# This file provides local build configurations for development
|
||||
# Use: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
|
||||
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
# Development overrides - builds locally instead of using registry
|
||||
whoosh-backend:
|
||||
build:
|
||||
context: ./modules/whoosh/backend
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ./modules/whoosh/backend:/app
|
||||
- ./modules/whoosh/config:/app/config
|
||||
environment:
|
||||
- ENVIRONMENT=development
|
||||
- LOG_LEVEL=debug
|
||||
|
||||
whoosh-frontend:
|
||||
build:
|
||||
context: ./modules/whoosh/frontend
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ./modules/whoosh/frontend:/app
|
||||
- /app/node_modules
|
||||
|
||||
bzzz-coordinator:
|
||||
build:
|
||||
context: ./modules/bzzz
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ./modules/bzzz/config:/app/config
|
||||
- ./modules/bzzz/data:/app/data
|
||||
environment:
|
||||
- BZZZ_NODE_ENV=development
|
||||
- BZZZ_LOG_LEVEL=debug
|
||||
|
||||
slurp-api:
|
||||
build:
|
||||
context: ./modules/slurp/hcfs-python
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ./modules/slurp/data:/app/data
|
||||
- ./modules/slurp/config:/app/config
|
||||
environment:
|
||||
- HCFS_LOG_LEVEL=debug
|
||||
|
||||
slurp-rl-tuner:
|
||||
build:
|
||||
context: ./modules/slurp
|
||||
dockerfile: Dockerfile.rl-tuner
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
Reference in New Issue
Block a user