Files
url_tracker_tool/.env
Andrei f797f9b07c feat: Simplify home page and remove tracking form
- Remove complex tracking form from home page
- Replace with clean 'Analyze URL Redirects' call-to-action button
- Remove announcement badge '🚀 URL Tracker Tool V2 - Now Available'
- Clean up unused imports and form-related code
- Direct users to dedicated /track page for full functionality
- Improve user experience with cleaner, more focused home page

Changes:
- Simplified HomePage component with single CTA button
- Removed form validation, mutation handling, and result display
- Maintained all tracking functionality on /track page
- Professional appearance without promotional clutter
2025-08-23 19:07:02 +00:00

34 lines
924 B
Bash

# Production Environment Variables for Redirect Intelligence v2
# Copy this to .env and customize for your deployment
# Database
DB_PASSWORD=R9dbMfTkksXlboeFRD+wtw==
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/redirect_intelligence_v2?schema=public"
# JWT Secret (generate a strong secret)
JWT_SECRET=syiIpEqLvhXjbpyC2+VccCMfhz6rznIObRdZMfqf7Hg=
# CORS Origin (your domain)
CORS_ORIGIN=https://urltrackertool.com
# API URL for frontend
VITE_API_URL=https://api.urltrackertool.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