forked from Trustie-Study-Group/PRWelBot4SECourse
50 lines
1.0 KiB
Python
50 lines
1.0 KiB
Python
|
#!/usr/bin/python
|
|||
|
# mysql 数据库配置信息
|
|||
|
db_config = {
|
|||
|
'host': 'localhost',
|
|||
|
'user': '',
|
|||
|
'password': '',
|
|||
|
'database': 'pulldb',
|
|||
|
'use_unicode': True,
|
|||
|
'charset': 'utf8mb4'
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
# request 头部配置 目前token写死在头部,正常需通过 api来获取有效token
|
|||
|
header = {
|
|||
|
'User-Agent': 'Mozilla/5.0',
|
|||
|
'Authorization': 'Bearer token_str',
|
|||
|
'Content-Type': 'application/json',
|
|||
|
}
|
|||
|
|
|||
|
# app配置
|
|||
|
host = "0.0.0.0"
|
|||
|
port = 3090
|
|||
|
|
|||
|
# request 代理配置
|
|||
|
proxies = {"http": None, "https": None}
|
|||
|
|
|||
|
|
|||
|
# 平台接口url
|
|||
|
apiUrl = "https://www.gitlink.org.cn/"
|
|||
|
|
|||
|
|
|||
|
# payload = {
|
|||
|
# "action":"closed",
|
|||
|
# "number":2,
|
|||
|
# "pull_request":{
|
|||
|
# "id":3406,
|
|||
|
# "url":"https://gitlink.org.cn/wuxiaojun/botreascrch/pulls/2",
|
|||
|
# "number":2,
|
|||
|
# "user":{
|
|||
|
# "id":42378,
|
|||
|
# "login":"wuxiaojun",
|
|||
|
# },
|
|||
|
# "created_at":"2023-03-22T21:36:54+08:00",
|
|||
|
# },
|
|||
|
# "repository":{
|
|||
|
# "id":10203,
|
|||
|
# "name":"botreascrch",
|
|||
|
# }
|
|||
|
# }
|