Update branding assets and deployment configurations

- Enhanced moebius ring logo design in Blender
- Updated Docker Compose for website-only deployment with improved config
- Enhanced teaser layout with updated branding integration
- Added installation and setup documentation
- Consolidated planning and reports documentation
- Updated gitignore to exclude Next.js build artifacts and archives

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
tony
2025-08-27 07:45:08 +10:00
parent 8162496c11
commit 4ed167e734
38 changed files with 13841 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
version: '3.8'
services:
# PostgreSQL Database
# PostgreSQL Database (using existing volume with lead data)
teaser-postgres:
image: postgres:15-alpine
deploy:
@@ -23,9 +23,6 @@ services:
- POSTGRES_PASSWORD=choruspass
volumes:
- teaser_postgres_data:/var/lib/postgresql/data
- /home/tony/chorus/project-queues/active/chorus.services/init-db.sql:/docker-entrypoint-initdb.d/01-init-db.sql:ro
- /home/tony/chorus/project-queues/active/chorus.services/modules/teaser/database/01-schema.sql:/docker-entrypoint-initdb.d/02-teaser-schema.sql:ro
- /home/tony/chorus/project-queues/active/chorus.services/modules/teaser/database/02-add_teaser_lead_sources.sql:/docker-entrypoint-initdb.d/03-teaser-lead-sources.sql:ro
networks:
- chorus_website_network
healthcheck:
@@ -81,9 +78,53 @@ services:
depends_on:
- teaser-postgres
# CHORUS Dashboard
chorus-dashboard:
image: registry.home.deepblack.cloud/chorus-dashboard:latest
deploy:
replicas: 1
placement:
constraints:
- node.hostname == walnut
resources:
limits:
memory: 256M
reservations:
memory: 128M
labels:
- "traefik.enable=true"
- "traefik.docker.network=tengig"
- "traefik.http.routers.chorus-dashboard.rule=Host(`dashboard.chorus.services`)"
- "traefik.http.routers.chorus-dashboard.entrypoints=web-secured"
- "traefik.http.routers.chorus-dashboard.tls.certresolver=letsencryptresolver"
- "traefik.http.services.chorus-dashboard.loadbalancer.server.port=3002"
- "traefik.http.services.chorus-dashboard.loadbalancer.passhostheader=true"
environment:
- DATABASE_URL=postgresql://chorus:choruspass@teaser-postgres:5432/chorus_website
- POSTGRES_HOST=teaser-postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=chorus_website
- POSTGRES_USER=chorus
- POSTGRES_PASSWORD=choruspass
- NODE_ENV=production
- NEXT_TELEMETRY_DISABLED=1
- DASHBOARD_USERNAME=chorus
- DASHBOARD_PASSWORD=services2025!
ports:
- target: 3002
published: 3102
protocol: tcp
mode: ingress
networks:
- tengig
- chorus_website_network
depends_on:
- teaser-postgres
volumes:
teaser_postgres_data:
driver: local
external: true
name: chorus-teaser_teaser_postgres_data
networks:
tengig: