You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
418 B
Python

# 7 days
TOKEN_LIVE_TIME = 7
# Параметры подключения
DB_CONFIG = {
'host': '192.168.1.100',
'port': 5432, # стандартный порт PostgreSQL
'database': 'game_shop', # замените на имя вашей БД
'user': 'casaos', # замените на ваше имя пользователя
'password': 'casaos' # замените на ваш пароль
}