-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
功能变动: - **使用 Gotify 发送工作流运行失败通知** - **使用 PostgreSQL 存储日志** - **不再支持 Python 3.8,并适配最新版 sshared** - 项目管理工具切换到 uv - 使用 uv 进行镜像构建 - 调整部署文件,增加 PostgreSQL 和 Gotify 对应的 Docker 网络 - 调整部署配置 - 优化 requirements.txt 文件生成 - 更新依赖库 错误修复: - 修复简书积分兑换平台单侧无挂单时采集报错的问题 - 修复配置文件映射异常的问题
- Loading branch information
Showing
24 changed files
with
2,682 additions
and
3,344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
**/.git/ | ||
**/.github/ | ||
**/.venv/ | ||
**/.ruff_cache/ | ||
**/__pycache__/ | ||
**/pyproject.toml | ||
**/poetry.lock | ||
**/requirements-dev.txt | ||
**/config.yaml | ||
**/config.example.toml | ||
**/config.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
# MongoDB 数据库 | ||
[mongodb] | ||
# 地址 | ||
[mongo] | ||
host = "localhost" | ||
# 端口 | ||
port = 27017 | ||
# 数据库名 | ||
database = "jfetcher" | ||
|
||
# 日志 | ||
[postgres] | ||
host = "localhost" | ||
port = 5432 | ||
user = "postgres" | ||
password = "postgres" | ||
database = "jfetcher" | ||
|
||
[logging] | ||
# 是否保存日志 | ||
enable_save = true | ||
# 日志展示等级 | ||
display_level = "DEBUG" | ||
# 日志保存等级 | ||
save_level = "DEBUG" | ||
|
||
# 飞书消息推送 | ||
[feishu_notification] | ||
# 是否启用消息推送 | ||
[notify] | ||
enabled = true | ||
# 消息推送 Webhook URL | ||
webhook_url = "" | ||
# 任务运行失败消息卡片 ID | ||
failure_card_id = "" | ||
host = "localhost" | ||
port = 8701 | ||
token = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.