-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
36 lines (29 loc) · 878 Bytes
/
.env.example
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
# Database
DATABASE_URL=postgresql://postgres:password@localhost:5432/supply
# JWT
JWT_SECRET=your-32-char-or-longer-jwt-secret-here
# SMTP
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your-smtp-username
SMTP_PASSWORD=your-smtp-password
# App
NEXT_PUBLIC_APP_URL=http://localhost:3000
NODE_ENV=development
BLOCKCHAIN_VERSION=1
# Initial Admin Setup
INITIAL_ADMIN_PASSWORD=your-secure-password
# Session
SESSION_SECRET=your-32-char-or-longer-session-secret
SESSION_EXPIRY_MINUTES=30
# Security
MASTER_KEY=your-32-char-or-longer-master-key-here
OWNERSHIP_TRANSFER_EXPIRY_HOURS=24
AUTH_CODE_EXPIRY_MINUTES=5
TRANSFER_COOLDOWN_SECONDS=86400
TRANSFER_SAFETY_MARGIN_SECONDS=300
# Cloudflare Turnstile
NEXT_PUBLIC_TURNSTILE_SITE_KEY=your-turnstile-site-key
TURNSTILE_SECRET_KEY=your-turnstile-secret-key