26c05912fc
Test and Lint / backend-test (push) Successful in 1m11s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m21s
Version and Release / version-bump (push) Successful in 33s
Version and Release / trigger-drone (push) Successful in 2s
- Fix database connection error "getaddrinfo ENOTFOUND postgres" - Add wait-for-db.sh script to ensure PostgreSQL is ready before starting - Fix email processor initialization timing issue - Add missing storage path environment variables - Add database dependency to backend service - Enhance health check endpoint with database connectivity check - Update production database defaults to match docker-compose - Install postgresql-client in Docker image for health checks - Document all required environment variables in .env.example Fixes immediate production deployment failures and ensures proper service startup order. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
require('dotenv').config();
|
|
|
|
const path = require('path');
|
|
|
|
// Database configuration for different environments
|
|
const config = {
|
|
development: {
|
|
client: process.env.DATABASE_CLIENT || 'sqlite3',
|
|
connection: process.env.DATABASE_CLIENT === 'pg' ? {
|
|
host: process.env.DB_HOST || 'localhost',
|
|
port: process.env.DB_PORT || 5432,
|
|
user: process.env.DB_USER || 'postgres',
|
|
password: process.env.DB_PASSWORD || 'postgres',
|
|
database: process.env.DB_NAME || 'photo_sharing'
|
|
} : {
|
|
filename: path.join(__dirname, process.env.DATABASE_PATH || './data/photo_sharing.db')
|
|
},
|
|
useNullAsDefault: process.env.DATABASE_CLIENT !== 'pg',
|
|
migrations: {
|
|
directory: './migrations'
|
|
},
|
|
seeds: {
|
|
directory: './seeds'
|
|
}
|
|
},
|
|
|
|
production: {
|
|
client: process.env.DATABASE_CLIENT || 'pg',
|
|
connection: {
|
|
host: process.env.DB_HOST || 'db',
|
|
port: process.env.DB_PORT || 5432,
|
|
user: process.env.DB_USER || 'picpeak',
|
|
password: process.env.DB_PASSWORD,
|
|
database: process.env.DB_NAME || 'picpeak'
|
|
},
|
|
pool: {
|
|
min: 2,
|
|
max: 10
|
|
},
|
|
migrations: {
|
|
directory: './migrations'
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = config[process.env.NODE_ENV || 'development']; |