.gitignore 863 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. *.swp
  22. *.swo
  23. *~
  24. # 操作系统
  25. .DS_Store
  26. Thumbs.db
  27. # 日志
  28. *.log
  29. logs/
  30. # 数据库数据
  31. postgres_data/
  32. redis_data/
  33. # Celery
  34. celerybeat-schedule
  35. celerybeat.pid
  36. # React Native
  37. mobile/node_modules/
  38. mobile/.expo/
  39. mobile/.expo-shared/
  40. mobile/dist/
  41. mobile/npm-debug.*
  42. mobile/*.jks
  43. mobile/*.p8
  44. mobile/*.p12
  45. mobile/*.key
  46. mobile/*.mobileprovision
  47. mobile/*.orig.*
  48. mobile/web-build/
  49. # macOS
  50. mobile/ios/Pods/
  51. mobile/ios/build/
  52. # Android
  53. mobile/android/build/
  54. mobile/android/app/build/
  55. mobile/android/.gradle/
  56. mobile/android/local.properties
  57. # Firebase
  58. firebase-credentials.json
  59. # 测试
  60. .pytest_cache/
  61. .coverage
  62. htmlcov/
  63. # Docker volumes
  64. postgres_data
  65. redis_data