.gitignore 872 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. venv/
  8. env/
  9. ENV/
  10. .venv
  11. # FastAPI
  12. *.db
  13. *.sqlite
  14. # 环境变量文件(包含敏感信息)
  15. .env
  16. .env.local
  17. .env.*.local
  18. # IDE
  19. .vscode/
  20. .idea/
  21. .claude/
  22. *.swp
  23. *.swo
  24. *~
  25. # 操作系统
  26. .DS_Store
  27. Thumbs.db
  28. # 日志
  29. *.log
  30. logs/
  31. # 数据库数据
  32. postgres_data/
  33. redis_data/
  34. # Celery
  35. celerybeat-schedule
  36. celerybeat.pid
  37. # React Native
  38. mobile/node_modules/
  39. mobile/.expo/
  40. mobile/.expo-shared/
  41. mobile/dist/
  42. mobile/npm-debug.*
  43. mobile/*.jks
  44. mobile/*.p8
  45. mobile/*.p12
  46. mobile/*.key
  47. mobile/*.mobileprovision
  48. mobile/*.orig.*
  49. mobile/web-build/
  50. # macOS
  51. mobile/ios/Pods/
  52. mobile/ios/build/
  53. # Android
  54. mobile/android/build/
  55. mobile/android/app/build/
  56. mobile/android/.gradle/
  57. mobile/android/local.properties
  58. # Firebase
  59. firebase-credentials.json
  60. # 测试
  61. .pytest_cache/
  62. .coverage
  63. htmlcov/
  64. # Docker volumes
  65. postgres_data
  66. redis_data