This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
SmartRollCall/config.py

14 lines
287 B
Python

# config.py
# app secretkey
SECRET_KEY = 'sUNiJ7QPulxrbmZD'
# 数据库连接配置
DB_CONFIG = {
'host': '42.193.20.110',
'user': 'test',
'password': 'X7gq9lbxqpDGbyCi',
'database': 'test_db',
'charset': 'utf8mb4',
'cursorclass': 'pymysql.cursors.DictCursor'
}