-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (27 loc) · 940 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (27 loc) · 940 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
31
# Mining Rig Rentals API credentials
# Get your keys at https://www.miningrigrentals.com/account/apikey
MRR_API_KEY=
MRR_API_SECRET=
# NOWPayments API credentials
# Get your keys at https://nowpayments.io/account
NOWPAYMENTS_API_KEY=
NOWPAYMENTS_IPN_SECRET=
# Your production base URL (used to build webhook callback URLs)
# Use NEXT_PUBLIC_BASE_URL when the value must be exposed to the client.
# Use BASE_URL for server-side-only contexts.
NEXT_PUBLIC_BASE_URL=https://yourdomain.com
BASE_URL=https://yourdomain.com
# Admin authentication
# Used for the /admin dashboard and protected API routes (X-Admin-Key header)
ADMIN_API_KEY=
ADMIN_EMAIL=
ADMIN_PASSWORD=
# Random secret for signing admin session cookies (use a long random string)
ADMIN_SESSION_SECRET=
# Email (SMTP) settings
# Leave empty to log emails to the console in development mode
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASS=
EMAIL_FROM="Miner4 <noreply@miner4.io>"