Update .env.example

This commit is contained in:
Alexander Pankratov 2020-05-16 23:09:25 +03:00
parent 228f6cd156
commit 0f3b05e5dd

View File

@ -20,10 +20,15 @@ TELEGRAM_PROXY_USERNAME=
TELEGRAM_PROXY_PASSWORD=
#DB
# memory - keep all data in memory/session file.
# mysql - keep part of data in mysql database.
# Reduce memory consumption and session size.
DB=memory
# memory
# Keep all data in memory/session file.
# This is default behavior
# mysql
# Keep part of data in mysql database.
# Reduce memory consumption and session size. Beta function.
# MariaDb + InnoDb Preffered.
# Tables and DB will be created if not exists.
DB_TYPE=memory
MYSQL_HOST='127.0.0.1'
MYSQL_PORT=3306
MYSQL_USER='root'