Update config.py

This commit is contained in:
HibiKier 2021-07-04 19:38:29 +08:00 committed by GitHub
parent ea0d3a8376
commit 3172fd7783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,13 +21,13 @@ TL_KEY: List[str] = []
# 数据库(必要)
# 如果填写了bind就不需要再填写后面的字段了#
# 示例:"bind": "postgresql://user:password@127.0.0.1:5432/database"
bind: str = ''
bind: str = '' # 数据库url
sql_name: str = 'postgresql'
user: str = ''
password: str = ''
address: str = ''
port: str = ''
database: str = ''
user: str = '' # 数据用户名
password: str = '' # 数据库密码
address: str = '' # 数据库地址
port: str = '' # 数据库端口
database: str = '' # 数据库名称
# 公开图库列表