forked from Studio-Yandex-Practicum/bmc_companion_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.template
52 lines (46 loc) · 1.03 KB
/
.env.template
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
52
# --------------------
# Common
# --------------------
DOCKER_BUILDKIT=1
COMPOSE_PROJECT_NAME=bmc_companion_bot
ENVIRONMENT=development
# --------------------
# Adminpanel
# --------------------
ALLOWED_HOSTS=localhost 127.0.0.1
DJANGO_SETTINGS_MODULE=config.settings
# --------------------
# Celery
# --------------------
CELERY_BEAT_SCHEDULER = django_celery_beat.schedulers:DatabaseScheduler
CELERY_BROKER_URL = redis://127.0.0.1:6379
CELERY_RESULT_BACKEND = redis://127.0.0.1:6379
# --------------------
# Webapi
# --------------------
SECRET_KEY="i-am-very-secret-key-dont-push-me-to-github"
APP_HOST=127.0.0.1
APP_PORT=8000
APP_WEB_PROTOCOL=http
APP_NGINX_PORT=80
UCE_TEST_ID=1
# --------------------
# Bot
# --------------------
BOT_TOKEN=real-bot-token
ADMIN=ADMIN
ROOT=ROOT
USER=USER
# --------------------
# Postgres
# --------------------
POSTGRES_DB=bmc_db
POSTGRES_USER=admin
POSTGRES_PASSWORD=123qwe
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=5435
# --------------------
# Redis
# --------------------
REDIS_HOST=127.0.0.1
REDIS_PORT=6379