pdf-accessibility/.env.example
DJP bf83a409bb Initial commit: Enterprise PDF Accessibility Checker
- Complete WCAG 2.1 accessibility checking system
- AI-powered analysis with Claude 4.5 and Google Vision
- Web interface with drag-and-drop upload
- REST API backend (PHP)
- Python checker with parallel processing
- Quick mode for fast scans (~10 seconds)
- Full mode with AI analysis (~2 minutes)
- .env file support for API keys
- Error logging and debugging tools
- Comprehensive documentation

Performance improvements:
- Parallel image processing (3x faster)
- Smart API timeouts (10s)
- Reduced DPI for faster conversions
- Real-time progress updates

🤖 Generated with Claude Code
2025-10-20 15:50:56 -04:00

18 lines
880 B
Text

# Enterprise PDF Accessibility Checker - Environment Variables
# Copy this file to .env and fill in your API keys
# Anthropic Claude API Key (required for AI image analysis)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=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
# Google Cloud Vision API (OPTIONAL - for enhanced image analysis)
# IMPORTANT: Comment out or remove lines you're not using!
#
# Option 1: Use credentials file path (UNCOMMENT and set path if using)
# GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/google-credentials.json
# Option 2: Or use API key directly (UNCOMMENT and set key if using)
GOOGLE_API_KEY=AIzaSyDWVxBWiDTeECqapiUpbXJadrxqcoA9tus
# Note: You only need ONE of the Google options above, not both
# The credentials file method is recommended for production use