67 lines
941 B
Plaintext
67 lines
941 B
Plaintext
# Python相关
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# 项目特定目录
|
|
tvbox_routes_temp/
|
|
|
|
# IDE相关
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
sync_json_array.py
|
|
config.py
|
|
README.md
|
|
README.md.txt
|
|
sync_json.py
|
|
failed_urls.json
|
|
sync_tvbox_json_standalone.py
|
|
setup_schedule.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'
|
|
}
|
|
]
|
|
*.bat
|
|
|