Spaces:
Running
Running
| # Syncora Environment Configuration | |
| # Copy this file to .env.local and fill in your actual values | |
| # AWS Configuration (Required for client-side S3 upload) | |
| REACT_APP_AWS_ACCESS_KEY_ID=your_aws_access_key_id_here | |
| REACT_APP_AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key_here | |
| REACT_APP_AWS_REGION=aws_region_here | |
| REACT_APP_S3_BUCKET_NAME=your_s3_bucket_name_here | |
| # API Configuration | |
| REACT_APP_API_BASE_URL=api.example.com | |
| REACT_APP_API_TIMEOUT=30 | |
| REACT_APP_MAX_RETRIES=3 | |
| # Application Settings | |
| REACT_APP_DEFAULT_NUM_RECORDS=100 | |
| REACT_APP_MAX_FILE_SIZE_MB=10 | |
| # Debug Mode (set to 'true' for development) | |
| REACT_APP_DEBUG=false | |
| # Note: API key encryption/decryption keys are hardcoded in config.js for security | |
| # In production, these should be environment variables on the server side | |
| DEBUG=false | |
| LOG_LEVEL=INFO | |
| MAX_FILE_SIZE_MB=10 | |
| DEFAULT_NUM_RECORDS=25 | |
| # Optional: Custom API timeout settings (Server-side) | |
| API_TIMEOUT=1800 | |
| MAX_RETRIES=3 |