-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (39 loc) · 1.04 KB
/
.env.example
File metadata and controls
50 lines (39 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Auto Image Diff - Environment Configuration
# Copy this file to .env and update with your values
# Node Environment
NODE_ENV=development
# Logging Configuration
LOG_LEVEL=info
LOG_FORMAT=json
# Performance Settings
MAX_WORKERS=4
BATCH_SIZE=10
MEMORY_LIMIT=4096
# Image Processing Settings
IMAGE_QUALITY=85
MAX_IMAGE_SIZE=10485760
DIFF_THRESHOLD=0.1
# Output Configuration
OUTPUT_DIR=./output
ENABLE_HTML_REPORTS=true
ENABLE_JSON_REPORTS=true
# Cache Settings
ENABLE_CACHE=true
CACHE_DIR=./cache
CACHE_TTL=86400
# Debug Mode
DEBUG_MODE=false
VERBOSE_OUTPUT=false
# API/Service URLs (for future integrations)
# API_BASE_URL=https://api.example.com
# API_KEY=your-api-key-here
# AWS S3 (for future cloud storage)
# AWS_REGION=us-east-1
# AWS_BUCKET=auto-image-diff-storage
# AWS_ACCESS_KEY_ID=your-access-key
# AWS_SECRET_ACCESS_KEY=your-secret-key
# Database (for future metadata storage)
# DATABASE_URL=postgresql://user:password@localhost:5432/auto_image_diff
# Monitoring (for future telemetry)
# SENTRY_DSN=https://your-sentry-dsn
# ENABLE_TELEMETRY=false