49 lines
760 B
Plaintext
49 lines
760 B
Plaintext
# Git
|
||
.git
|
||
.gitignore
|
||
|
||
# 本地开发(部署时环境文件需进构建上下文,由 Dockerfile COPY ${ENV_FILE} → /app/.env)
|
||
.env
|
||
.env.*.local
|
||
*.local
|
||
!.env.development
|
||
!.env.production
|
||
!.env
|
||
|
||
# 构建产物
|
||
# 注意:不可忽略 soul-api —— Dockerfile.local 需 COPY 本地交叉编译的二进制;多阶段 Dockerfile 内 go build 会覆盖
|
||
*.exe
|
||
__pycache__
|
||
*.pyc
|
||
|
||
# 上传文件(运行时挂载,不打包进镜像)
|
||
uploads/
|
||
# certs 必须打包进镜像,否则微信支付无效
|
||
|
||
# 日志
|
||
*.log
|
||
*.log.gz
|
||
wechat/
|
||
|
||
# 文档 / 脚本(非运行必需)
|
||
*.md
|
||
scripts/
|
||
*.sql
|
||
*.bat
|
||
*.py
|
||
master.py
|
||
miner_cleanup.py
|
||
disk_analysis.py
|
||
vuln_analysis.py
|
||
|
||
# IDE / 配置
|
||
.air.toml
|
||
.vscode
|
||
.idea
|
||
*.swp
|
||
*.swo
|
||
|
||
# 测试
|
||
*_test.go
|
||
qgL5DeGe9A.txt
|