-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 721 Bytes
/
Copy path.env.example
File metadata and controls
30 lines (24 loc) · 721 Bytes
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
# Environment Configuration Example
# Copy this file to .env.local for development
# Application Settings
NODE_ENV=development
NEXT_PUBLIC_APP_NAME=SecureTodoApp
NEXT_PUBLIC_APP_VERSION=1.0.0
# Debug and Logging
DEBUG=false
LOG_LEVEL=info
NEXT_PUBLIC_DEBUG_MODE=false
# Security Settings
NEXT_PUBLIC_ENCRYPTION_ITERATIONS=100000
NEXT_PUBLIC_SESSION_TIMEOUT=3600000
NEXT_PUBLIC_PASSWORD_MIN_LENGTH=6
# Development Settings
NEXT_PUBLIC_DEV_TOOLS=false
NEXT_PUBLIC_PERFORMANCE_MONITORING=false
# Feature Flags
NEXT_PUBLIC_ENABLE_ANALYTICS=false
NEXT_PUBLIC_ENABLE_ERROR_REPORTING=false
NEXT_PUBLIC_ENABLE_OFFLINE_MODE=true
# Storage Settings
NEXT_PUBLIC_MAX_STORAGE_SIZE=50000000
NEXT_PUBLIC_CLEANUP_INTERVAL=86400000