56 lines
No EOL
2.2 KiB
Text
56 lines
No EOL
2.2 KiB
Text
# Ghost MCP Development Environment Configuration
|
|
# Copy this file to .env and update the values as needed
|
|
|
|
# =============================================================================
|
|
# Database Configuration
|
|
# =============================================================================
|
|
MYSQL_ROOT_PASSWORD=your_strong_root_password_here
|
|
MYSQL_DATABASE=ghost_dev
|
|
MYSQL_USER=ghost
|
|
MYSQL_PASSWORD=your_strong_ghost_db_password_here
|
|
|
|
# =============================================================================
|
|
# Ghost Configuration
|
|
# =============================================================================
|
|
# The URL where Ghost will be accessible
|
|
GHOST_URL=http://localhost:2368
|
|
|
|
# =============================================================================
|
|
# Email Configuration (Optional - for testing email features)
|
|
# =============================================================================
|
|
# From address for Ghost emails
|
|
GHOST_MAIL_FROM=noreply@localhost
|
|
|
|
# SMTP Configuration (uncomment and configure if needed)
|
|
# MAIL_SERVICE=Gmail
|
|
# MAIL_USER=your-email@gmail.com
|
|
# MAIL_PASSWORD=your-app-password
|
|
|
|
# =============================================================================
|
|
# MCP Development Configuration (for future use)
|
|
# =============================================================================
|
|
# These will be used by the MCP server once implemented
|
|
|
|
# Ghost API Keys (obtain these after Ghost setup)
|
|
# GHOST_CONTENT_API_KEY=your_content_api_key_here
|
|
# GHOST_ADMIN_API_KEY=your_admin_api_key_here
|
|
|
|
# Ghost API Version
|
|
# GHOST_VERSION=v5.0
|
|
|
|
# MCP Operation Mode
|
|
# MCP_GHOST_MODE=auto
|
|
|
|
# =============================================================================
|
|
# Development Settings
|
|
# =============================================================================
|
|
# Set to 'development' for verbose logging
|
|
NODE_ENV=development
|
|
|
|
# =============================================================================
|
|
# Security Notes
|
|
# =============================================================================
|
|
# - Never commit the actual .env file to version control
|
|
# - Use strong, unique passwords for production
|
|
# - Keep API keys secure and never log them
|
|
# - For production, use proper SMTP configuration |