diff --git a/.gitignore b/.gitignore index fa34c95..bd6f35d 100644 --- a/.gitignore +++ b/.gitignore @@ -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' + } +]