refactor: complete configuration cleanup and consistency fixes
Mirror to GitHub / mirror (push) Successful in 26s
Test and Lint / backend-test (push) Successful in 1m15s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m2s
Version and Release / version-bump (push) Failing after 1m17s
Version and Release / trigger-drone (push) Has been skipped

- Create docker-compose.dev.yml with Mailhog for development email testing
- Standardize all configurations to use PORT=3001 for backend
- Fix database service naming (postgres → db) across all files
- Add missing BACKEND_URL environment variable to all configs
- Update .env examples to match actual Docker setup requirements
- Remove orphaned postgres-init directory (Umami handles its own DB)
- Update README roadmap: mark gallery feedback as implemented, add multi-admin support
- Update deployment guide with development setup instructions
- Fix frontend Dockerfile.dev for proper hot-reload development
- Remove unused files (wedding-photos.db, frontend/README.md)

This ensures all configuration files are consistent and aligned with the deployment guide.
This commit is contained in:
2025-07-24 21:13:52 +02:00
parent 7c79052681
commit a209796b16
12 changed files with 162 additions and 126 deletions
+5 -4
View File
@@ -2,7 +2,7 @@ version: '3.8'
services:
# PostgreSQL Database
postgres:
db:
image: postgres:15-alpine
container_name: picpeak-postgres
environment:
@@ -23,12 +23,13 @@ services:
build: ./backend
container_name: picpeak-backend
depends_on:
postgres:
db:
condition: service_healthy
environment:
NODE_ENV: production
PORT: 3001
DATABASE_CLIENT: pg
DB_HOST: postgres
DB_HOST: db
DB_PORT: 5432
DB_NAME: ${DB_NAME:-picpeak}
DB_USER: ${DB_USER:-picpeak}
@@ -40,7 +41,7 @@ services:
- ./data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
test: ["CMD", "curl", "-f", "http://localhost:3001/api/health"]
interval: 30s
timeout: 10s
retries: 3