-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
30 lines (25 loc) · 759 Bytes
/
.env.example
File metadata and controls
30 lines (25 loc) · 759 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
# =====================
# THE .env FILE
# =====================
# Flask / Webhook Settings
# FLASK_SECRET_KEY (generate using generate_credentials.py)
FLASK_SECRET_KEY=GENERATE_WITH_SCRIPT
WEBHOOK_PIN=CHANGE_ME_WEBHOOK_PIN # Change this to a strong, unique PIN
# Dashboard or misc config
# DASHBOARD_PASSWORD (generate using generate_credentials.py)
DASHBOARD_PASSWORD=GENERATE_WITH_SCRIPT
# Bybit API Credentials
BYBIT_API_KEY=
BYBIT_API_SECRET=
# Binance API Credentials
BINANCE_API_KEY=
BINANCE_API_SECRET=
# Signal Source MODE: "webhook", "email", or "both"
MODE=both
# Email Settings
IMAP_SERVER=imap.your-email-provider.com
IMAP_PORT=993
IMAP_EMAIL=your_email@example.com
IMAP_PASSWORD=your_email_password
IMAP_USE_SSL=true
IMAP_CHECK_INTERVAL=15