.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. share/python-wheels/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. MANIFEST
  24. backend/app/static/snapshots/
  25. reports
  26. # Virtual Environments
  27. .env
  28. .venv
  29. env/
  30. venv/
  31. ENV/
  32. env.bak/
  33. venv.bak/
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. *.py,cover
  48. .hypothesis/
  49. .pytest_cache/
  50. cover/
  51. # Jupyter Notebook
  52. .ipynb_checkpoints
  53. # Visual Studio Code
  54. .vscode/
  55. *.code-workspace
  56. # PyCharm / IntelliJ
  57. .idea/
  58. # Windows
  59. Thumbs.db
  60. ehthumbs.db
  61. Desktop.ini
  62. # MacOS
  63. .DS_Store
  64. .AppleDouble
  65. .LSOverride
  66. # Frontend - Node / Vite
  67. frontend/node_modules/
  68. frontend/dist/
  69. frontend/.env
  70. frontend/.env.local
  71. frontend/.env.*.local
  72. frontend/npm-debug.log*
  73. frontend/yarn-debug.log*
  74. frontend/yarn-error.log*
  75. frontend/pnpm-debug.log*
  76. mysql_data
  77. snapshots
  78. # Backend Specific
  79. # If frontend builds into backend/static or similar, ignore it if you want to force rebuilds
  80. # Assuming frontend builds to backend/dist or similar based on README
  81. backend/dist/
  82. backend/static/
  83. *.sqlite3
  84. *.db
  85. # Environment Variables (CRITICAL)
  86. .env
  87. .env.production