-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
40 lines (33 loc) · 1010 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
36
37
38
39
40
###> symfony/framework-bundle ###
APP_ENV=dev
APP_NAME=banish
APP_VERSION=local
APP_DEBUG=1;
APP_SECRET=43dd21316f697969052661055bc495be
APP_PORT=9000
APP_ADMIN_PASSWORD=123456
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
DATABASE_USER=user
DATABASE_PASSWORD=password
DATABASE_DB_NAME=app
DATABASE_PORTS=5432:5432
DATABASE_URL="postgresql://user:password@${APP_NAME}.service.db:5432/app?serverVersion=15&charset=utf8"
###< doctrine/doctrine-bundle ###
###> symfony/messenger ###
MESSENGER_TRANSPORT_DSN="redis://${APP_NAME}.service.redis:6379/messages"
###< symfony/messenger ###
###> symfony/cache ###
MEMCACHED_DSN="memcached://${APP_NAME}.service.memcached:11211"
MEMCACHED_PORTS=11211:11211
###< symfony/cache ###
COMPOSE_PROJECT_NAME=banish
COMPOSER_VERSION=2.5.8
TIMEZONE=UTC
NGINX_BACKEND_DOMAIN=_
NGINX_HTTP_PORTS=80:80
NGINX_HTTPS_PORTS=443:443
TELEGRAM_API_URL=https://api.telegram.org/bot
TELEGRAM_BOT_NAME=test
TELEGRAM_BOT_TOKEN=123
TELEGRAM_MIN_MESSAGES_FOR_TRUST=3