-
Notifications
You must be signed in to change notification settings - Fork 38
/
env_example
35 lines (27 loc) · 955 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
# Rename this file to .env
# Commented options are optional, feel free to
# uncomment them if needed
# Get your bot token from https://t.me/botfather
BOT_TOKEN=123456789:abcdefghijklmnopqrstuvwxyz
# FSM Mode. Possible options: memory, redis
FSM_MODE=memory
# Redis connection string (DSN)
# REDIS=redis://user:pass@host:port
# or
# REDIS=redis://host
# or whatever your settings are
# Language to use in bot. Check locales folder for
# information how to use your own locale
BOT_LANGUAGE=en
# Starting points for your game.
# If not set, value 50 is used
# STARTING_POINTS=50
# Whether to set a sticker (defined by locale) when
# balance is zero, or not. Defaults to False (do not send)
# SEND_GAMEOVER_STICKER=false
# How much time to wait until next spin
# Defaults to 2 seconds (which is roughly dice animation duration)
# THROTTLE_TIME_SPIN=2
# How much time to wait until next other command send
# Defaults to 1 second
# THROTTLE_TIME_OTHER=1