新增忽略文件

This commit is contained in:
tomlio 2025-05-20 16:00:00 +08:00
parent 0e27ae3882
commit 3727ed5bb3

24
.gitignore vendored
View File

@ -38,3 +38,27 @@ README.md
README.md.txt
sync_json.py
failed_urls.json
sync_tvbox_json_standalone.py
# Gitea配置
GITEA_CONFIG = {
'repo': 'https://gitea.com/your-username/your-repo.git' # 替换为你的Gitea仓库地址
}
# Git配置
GIT_CONFIG = {
'user_name': 'Your Name', # 替换为你的Git用户名
'user_email': 'your.email@example.com' # 替换为你的Git邮箱
}
# JSON源配置
JSON_URLS = [
{
'name': 'example1',
'url': 'https://example.com/route1.json'
},
{
'name': 'example2',
'url': 'https://example.com/route2.json'
}
]