mirror of
https://git.oceanpay.cc/danial/kami_jd_ck.git
synced 2025-12-18 11:26:49 +00:00
- 修改 .drone.yml 中的 Docker Compose 命令,使用 jd_bind_card_server 代替 bind_card - 更新 .gitignore 文件,使用通配符路径以更全面地忽略文件和目录 - 在 babel_channel/app.py 中,将 unidbg_url 的 IP 地址改为服务名 unidbg_boot_server - 修改 unidbg_boot_server/Dockerfile,将暴露的端口从 8080 改为 9999
71 lines
750 B
Plaintext
71 lines
750 B
Plaintext
# IDE
|
|
**/.idea/
|
|
**/.vscode/
|
|
**/*.swp
|
|
**/*.swo
|
|
**/.DS_Store
|
|
|
|
# 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
|
|
|
|
# Node.js
|
|
**/node_modules/
|
|
**/npm-debug.log
|
|
**/yarn-debug.log
|
|
**/yarn-error.log
|
|
|
|
# Docker
|
|
**/.docker/
|
|
**/docker-compose.override.yml
|
|
|
|
# Logs
|
|
**/*.log
|
|
**/logs/
|
|
**/log/
|
|
|
|
# Environment variables
|
|
**/.env
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# Temporary files
|
|
**/*.tmp
|
|
**/*.temp
|
|
**/.temp/
|
|
**/tmp/
|
|
**/temp/
|
|
|
|
# Build output
|
|
**/dist/
|
|
**/build/
|
|
**/out/
|
|
**/target/
|
|
|
|
# Coverage
|
|
**/coverage/
|
|
**/.coverage
|
|
**/htmlcov/
|
|
|
|
# Cache
|
|
**/.cache/
|
|
**/.pytest_cache/
|
|
**/.mypy_cache/ |