From 3727ed5bb3ceda473eac8422de8bd6128bc661e5 Mon Sep 17 00:00:00 2001 From: tomlio <957399845@qq.com> Date: Tue, 20 May 2025 16:00:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BF=BD=E7=95=A5=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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' + } +]