Khushal-ag/tabular-generation-test
0
1# Copy this file to .env and fill in your actual values2 3# API Configuration4API_BASE_URL=https://your-api-domain.com5API_VALIDATION_ENDPOINT=validation-route6GENERATION_API_ENDPOINT=generate-route7 8# AWS Configuration (if using AWS services)9AWS_ACCESS_KEY_ID=your_aws_access_key_here10AWS_SECRET_ACCESS_KEY=your_aws_secret_key_here11AWS_REGION=us-east-112S3_BUCKET_NAME=your-bucket-name13 14# Encryption Key15AES_SECRET_KEY=your_64_character_hex_secret_key_here_32_bytes_aes256_key16AES_IV=your_32_character_hex_iv_here_16_bytes17 18# Application Configuration19DEBUG=false20LOG_LEVEL=INFO21MAX_FILE_SIZE_MB=1022DEFAULT_NUM_RECORDS=2523 24# Optional: Custom API timeout settings25API_TIMEOUT=3026MAX_RETRIES=327 