8 lines
471 B
Python
8 lines
471 B
Python
|
class ProductionConfig:
|
||
|
SQLALCHEMY_DATABASE_URI = f"mysql+pymysql://root:takway@127.0.0.1/takway?charset=utf8mb4" #mysql数据库连接配置
|
||
|
REDIS_URL = "redis://:takway@127.0.0.1:6379/0" #redis数据库连接配置
|
||
|
LOG_LEVEL = "INFO" #日志级别
|
||
|
class XF_ASR:
|
||
|
APP_ID = "your_app_id" #讯飞语音识别APP_ID
|
||
|
API_SECRET = "your_api_secret" #讯飞语音识别API_SECRET
|
||
|
API_KEY = "your_api_key" #讯飞语音识别API_KEY
|