refactor: Remove Directus infrastructure, simplify Docker deployment
- Remove Directus CMS infrastructure (docker-compose.infrastructure.yml) - Simplify to Astro-only deployment using existing Supabase backend - Clean up docker-compose.override.yml to focus on local development - Update NGINX config to proxy only to Astro app - Remove Directus-related npm scripts and database management tools - Streamline deployment guide for Supabase + Astro architecture Deployment workflow: - Local: npm run docker:dev (Astro + Supabase hosted) - Production: npm run docker:astro:up (Astro only) Benefits: - Simpler architecture with proven Supabase backend - Faster deployments (Astro only) - Zero database downtime - Reduced operational complexity 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -2,10 +2,10 @@ version: '3.8'
|
||||
|
||||
# Override file for local development
|
||||
# This file is automatically loaded by docker-compose up
|
||||
# It combines both Astro app and infrastructure for full local development
|
||||
# Simplified development setup with just the Astro app
|
||||
|
||||
services:
|
||||
# Astro app (from docker-compose.astro.yml)
|
||||
# Astro app for local development
|
||||
bct-app:
|
||||
build:
|
||||
context: .
|
||||
@@ -22,7 +22,7 @@ services:
|
||||
- NODE_ENV=development
|
||||
- HOST=0.0.0.0
|
||||
- PORT=3000
|
||||
# Supabase
|
||||
# Supabase (your existing hosted database)
|
||||
- PUBLIC_SUPABASE_URL=${PUBLIC_SUPABASE_URL}
|
||||
- PUBLIC_SUPABASE_ANON_KEY=${PUBLIC_SUPABASE_ANON_KEY}
|
||||
- SUPABASE_SERVICE_ROLE_KEY=${SUPABASE_SERVICE_ROLE_KEY}
|
||||
@@ -46,89 +46,7 @@ services:
|
||||
start_period: 40s
|
||||
networks:
|
||||
- bct-network
|
||||
depends_on:
|
||||
directus:
|
||||
condition: service_healthy
|
||||
|
||||
# PostgreSQL (from docker-compose.infrastructure.yml)
|
||||
postgres:
|
||||
image: postgres:15.5-alpine
|
||||
container_name: bct-postgres-dev
|
||||
environment:
|
||||
POSTGRES_DB: directus
|
||||
POSTGRES_USER: directus
|
||||
POSTGRES_PASSWORD: ${DIRECTUS_DB_PASSWORD:-directus_dev_password}
|
||||
volumes:
|
||||
- postgres_data_dev:/var/lib/postgresql/data
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U directus -d directus"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
networks:
|
||||
- bct-network
|
||||
|
||||
# Directus (from docker-compose.infrastructure.yml)
|
||||
directus:
|
||||
image: directus/directus:10.12.0
|
||||
container_name: bct-directus-dev
|
||||
ports:
|
||||
- "8055:8055"
|
||||
environment:
|
||||
KEY: ${DIRECTUS_KEY:-development-key-12345678901234567890123456789012}
|
||||
SECRET: ${DIRECTUS_SECRET:-development-secret-abcdef}
|
||||
|
||||
# Database
|
||||
DB_CLIENT: pg
|
||||
DB_HOST: postgres
|
||||
DB_PORT: 5432
|
||||
DB_DATABASE: directus
|
||||
DB_USER: directus
|
||||
DB_PASSWORD: ${DIRECTUS_DB_PASSWORD:-directus_dev_password}
|
||||
|
||||
# Security
|
||||
CORS_ENABLED: true
|
||||
CORS_ORIGIN: http://localhost:3000,http://localhost:4321
|
||||
|
||||
# Admin user (development)
|
||||
ADMIN_EMAIL: ${DIRECTUS_ADMIN_EMAIL:-admin@localhost}
|
||||
ADMIN_PASSWORD: ${DIRECTUS_ADMIN_PASSWORD:-admin123}
|
||||
|
||||
# Storage
|
||||
STORAGE_LOCATIONS: local
|
||||
STORAGE_LOCAL_ROOT: /directus/uploads
|
||||
|
||||
# Development settings
|
||||
CACHE_ENABLED: false
|
||||
LOG_LEVEL: debug
|
||||
RATE_LIMITER_ENABLED: false
|
||||
|
||||
volumes:
|
||||
- directus_uploads_dev:/directus/uploads
|
||||
- directus_extensions_dev:/directus/extensions
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8055/server/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
start_period: 30s
|
||||
networks:
|
||||
- bct-network
|
||||
|
||||
volumes:
|
||||
postgres_data_dev:
|
||||
driver: local
|
||||
directus_uploads_dev:
|
||||
driver: local
|
||||
directus_extensions_dev:
|
||||
driver: local
|
||||
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: bct-network
|
||||
bct-network:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user