-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
51 lines (45 loc) · 1.05 KB
/
.env.example
File metadata and controls
51 lines (45 loc) · 1.05 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Fill in the actual secrets before using the app!
# Note: This is a template file. Create a copy as ".env" and fill in the actual values.
# Never commit your actual ".env" file to version control!
# ========================
# Bot Configuration
# ========================
BOT_TOKEN=
BOT_ADMIN_ACCESS_IDs=[]
BOT_SUPPORT_LINK=
BOT_NAME=
BOT_DEFAULT_LANGUAGE=en
BOT_POPULARITY_COEFFICIENT=1
BOT_REFERRAL_THRESHOLD=1
# ========================
# Database Configuration
# ========================
DB_NAME=hamster
DB_USER=postgres
DB_PASSWORD=postgres
DB_PORT=5432
DB_HOST=0.0.0.0
DATABASE_DRIVER=postgresql+asyncpg
DB_LOCAL_PORT=5432
DB_OUT_PORT=5432
# ========================
# Redis Configuration
# ========================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
REDIS_TTL=3600
REDIS_FSM_TTL=3600
REDIS_DATA_TTL=7200
# ========================
# Payment Configuration
# ========================
WALLET_TRC=
WALLET_TON=
# ========================
# Environment Mode
# ========================
PRODUCTION_MODE=False
IMAGE_TAG=latest
STARTUP_METHOD=2