-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (20 loc) · 835 Bytes
/
Copy pathenv.example
File metadata and controls
24 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Supabase Configuration
# Get these from your Supabase project settings > API
NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
# Encryption Key (32-byte hex string)
# Generate with: openssl rand -hex 32
# IMPORTANT: Never commit this to version control
# This key is critical - if lost, all encrypted data cannot be decrypted
VAULT_ENCRYPTION_KEY=
AUTH_PASSWORD=your_login_password
MASTER_PASSWORD=your_vault_master_password
# Environment
# Options: development, production, test
NODE_ENV=development
# Auto-Lock Timeout (optional)
# Time in milliseconds before vault auto-locks due to inactivity
# Default: 900000 (15 minutes)
# Example: 300000 for 5 minutes, 1800000 for 30 minutes
VAULT_AUTO_LOCK_TIMEOUT_MS=900000