Some checks failed
Deploy to Production / deploy (push) Failing after 8s
- Renamed MYSQL_ROOT_PASSWORD to DB_ROOT_PASSWORD and MYSQL_PASSWORD to DB_PASSWORD for consistent naming - Updated docker-compose.yml to map DB_* variables to MySQL container's expected MYSQL_* format - Removed redundant DATABASE_URL variable since individual DB_* variables are now used - Added default values for DB_USER, DB_NAME, DB_HOST, and DB_PORT in docker-compose.yml - Updated all documentation files to reference new standar
26 lines
698 B
Plaintext
26 lines
698 B
Plaintext
# Database Configuration
|
|
# All database variables use DB_* prefix for consistency
|
|
DB_ROOT_PASSWORD=your_root_password_here
|
|
DB_PASSWORD=your_mysql_password_here
|
|
DB_USER=voxblog
|
|
DB_NAME=voxblog
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
|
|
# Application
|
|
ADMIN_PASSWORD=your_admin_password_here
|
|
OPENAI_API_KEY=sk-your-openai-api-key
|
|
UNSPLASH_ACCESS_KEY=your_unsplash_access_key
|
|
GHOST_ADMIN_API_KEY=your_ghost_admin_api_key
|
|
GHOST_ADMIN_API_URL=https://your-ghost-instance/admin
|
|
|
|
# S3 Storage
|
|
S3_BUCKET=your-bucket-name
|
|
S3_REGION=us-east-1
|
|
S3_ACCESS_KEY=your_access_key
|
|
S3_SECRET_KEY=your_secret_key
|
|
S3_ENDPOINT=https://s3.amazonaws.com
|
|
|
|
# Frontend (for production deployment)
|
|
VITE_API_URL=https://api.yourdomain.com
|