- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
33 lines
834 B
Plaintext
33 lines
834 B
Plaintext
# Production Environment Variables for Redirect Intelligence v2
|
|
# Copy this to .env and customize for your deployment
|
|
|
|
# Database
|
|
DB_PASSWORD=your_secure_db_password_here
|
|
|
|
# JWT Secret (generate a strong secret)
|
|
JWT_SECRET=your-super-secret-jwt-key-minimum-32-characters-long
|
|
|
|
# CORS Origin (your domain)
|
|
CORS_ORIGIN=https://urltrackertools.com
|
|
|
|
# API URL for frontend
|
|
VITE_API_URL=https://urltrackertools.com
|
|
|
|
# Optional: Monitoring and Analytics
|
|
# SENTRY_DSN=your_sentry_dsn_here
|
|
# ANALYTICS_ID=your_analytics_id_here
|
|
|
|
# Optional: Email Configuration (for notifications)
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=your_email@gmail.com
|
|
# SMTP_PASS=your_app_password
|
|
|
|
# Optional: Rate Limiting
|
|
DEFAULT_RATE_LIMIT=100
|
|
AUTHENTICATED_RATE_LIMIT=1000
|
|
|
|
# Optional: File Upload Limits
|
|
MAX_FILE_SIZE=10485760
|
|
MAX_BULK_URLS=10000
|