37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"app_name": "Hello Paste",
|
|
|
|
"logger_desc": "用于日志输出的配置,各服务可以有自己的配置,但要使用独立配置时,必须编写额外代码",
|
|
"logger": {
|
|
"default": {
|
|
"desc": "默认日志配置,该配置小节的名称已经配置在 PASTE 框架中",
|
|
"basic": {
|
|
"filename": "logs/root.log",
|
|
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
|
"level": 20
|
|
},
|
|
"filename": "logs/default.log",
|
|
"name": "Demo",
|
|
"max_bytes": 20971520,
|
|
"backup_count": 40
|
|
}
|
|
},
|
|
|
|
"tornado_desc": "用于 Tornado 服务的配置,每一项后面允许设置多个服务",
|
|
"tornado": {
|
|
"demo": {
|
|
"autoreload": false,
|
|
"handlers_pkg": "examples.01_hello_world",
|
|
"port": 9000,
|
|
"static_path": "static",
|
|
"template_path": "templates",
|
|
"swagger_title": "DemoAPI",
|
|
"swagger_description": "Demo API",
|
|
"swagger_api_version": "1.0.1",
|
|
"swagger_contact": "email@qq.com"
|
|
}
|
|
},
|
|
|
|
"version": "1.0.1"
|
|
}
|