chore: 更新.gitignore文件以忽略所有__pycache__目录

添加对auth模块下所有__pycache__目录的忽略规则,并添加postgres_data目录
This commit is contained in:
jayhgq 2026-05-10 20:16:46 +08:00
parent 6f4ace886f
commit 3fc65697f0
21 changed files with 6 additions and 1 deletions

7
.gitignore vendored
View File

@ -1,4 +1,9 @@
.trae/documents/add_traefik_config_plan.md
redis/data/dump.rdb
redis/logs/redis-server.log
backend/auth/__pycache__/app.cpython-313.pyc
backend/auth/__pycache__/*
backend/auth/apps/__pycache__/*
backend/auth/apps/permissions/__pycache__/*
backend/auth/apps/roles/__pycache__/*
backend/auth/utils/__pycache__/*
postgres_data/*