lty/.gitignore
pmc a9d00a49f9
All checks were successful
Build and Deploy LTY / build-and-deploy (push) Successful in 8m34s
fix(infra): 切换 Redis 至火山引擎实例 + 修复 channels 不支持 ACL username + .env 取消跟踪
- 阿里云 Redis 实例 10054 RST 导致 /api/v1/admin/login/ 等接口全线 500,切到火山实例 (db /3, user zyc)
- CHANNEL_LAYERS hosts 由手工拼接 redis://:{pwd}@{host} 改为直接消费 REDIS_LOCATION,支持 ACL username
- .gitignore 恢复 qy_lty/.env 忽略,git rm --cached 移除跟踪;历史中旧密钥仍在,需另行 rotate
- 详见 qy_lty/docs/修改记录.md 2026-05-18 条目

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-18 13:48:14 +08:00

53 lines
938 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# === General ===
.DS_Store
*.swp
*.swo
*~
# === qy-lty-admin (Next.js) ===
# dependencies
qy-lty-admin/node_modules/
# next.js
qy-lty-admin/.next/
qy-lty-admin/out/
# production
qy-lty-admin/build/
# debug logs
qy-lty-admin/npm-debug.log*
qy-lty-admin/yarn-debug.log*
qy-lty-admin/yarn-error.log*
qy-lty-admin/.pnpm-debug.log*
# env files
# qy-lty-admin/.env
# qy-lty-admin/.env.local
# qy-lty-admin/.env.development
# qy-lty-admin/.env.production
# qy-lty-admin/.env.development.local
# qy-lty-admin/.env.test.local
# qy-lty-admin/.env.production.local
# vercel
qy-lty-admin/.vercel/
# typescript
qy-lty-admin/*.tsbuildinfo
qy-lty-admin/next-env.d.ts
# === qy_lty (Django / Python) ===
# python bytecode
__pycache__/
*.py[cod]
*.pyo
# env files含密钥禁止入库
qy_lty/.env
# logs
qy_lty/logs/
# static files collected
qy_lty/staticfiles/
# database
*.sqlite3
# virtual env
.venv/
venv/
env/
# conda
environment.lock.yml