Files
sexy/compose.yml
Sebastian Krüger 9d7afbe1b5 feat: replace Directus with custom Node.js GraphQL backend
Removes Directus 11 and replaces it with a lean, purpose-built backend:
- packages/backend/: Fastify v5 + GraphQL Yoga v5 + Pothos (code-first)
  with Drizzle ORM, Redis sessions (session_token cookie), argon2 auth,
  Nodemailer, fluent-ffmpeg, and full gamification system ported from bundle
- Frontend: @directus/sdk replaced by graphql-request v7; services.ts fully
  rewritten with identical signatures; directus.ts now re-exports from api.ts
- Cookie renamed directus_session_token → session_token
- Dev proxy target updated 8055 → 4000
- compose.yml: Directus service removed, backend service added (port 4000)
- Dockerfile.backend: new multi-stage image with ffmpeg
- Dockerfile: bundle build step and ffmpeg removed from frontend image
- data-migration.ts: one-time script to migrate all Directus/sexy_ tables

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-04 18:07:18 +01:00

88 lines
2.1 KiB
YAML

name: sexy
services:
postgres:
image: postgres:16-alpine
container_name: sexy_postgres
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: sexy
POSTGRES_USER: sexy
POSTGRES_PASSWORD: sexy
healthcheck:
test: ["CMD-SHELL", "pg_isready -U sexy"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
container_name: sexy_redis
restart: unless-stopped
volumes:
- redis_data:/data
command: redis-server --appendonly yes
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
backend:
build:
context: .
dockerfile: Dockerfile.backend
container_name: sexy_backend
restart: unless-stopped
ports:
- "4000:4000"
volumes:
- uploads_data:/data/uploads
environment:
DATABASE_URL: postgresql://sexy:sexy@sexy_postgres:5432/sexy
REDIS_URL: redis://sexy_redis:6379
UPLOAD_DIR: /data/uploads
CORS_ORIGIN: http://localhost:3000
PORT: 4000
NODE_ENV: production
COOKIE_SECRET: change-me-in-production
SMTP_HOST: localhost
SMTP_PORT: 587
EMAIL_FROM: noreply@sexy.pivoine.art
PUBLIC_URL: http://localhost:3000
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
frontend:
build:
context: .
dockerfile: Dockerfile
container_name: sexy_frontend
restart: unless-stopped
ports:
- "3000:3000"
environment:
NODE_ENV: production
PORT: 3000
HOST: 0.0.0.0
PUBLIC_API_URL: http://sexy_backend:4000
PUBLIC_URL: http://localhost:3000
depends_on:
backend:
condition: service_healthy
volumes:
uploads_data:
driver: local
postgres_data:
driver: local
redis_data:
driver: local