No Description

.gitignore 1006B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Python bytecode and caches
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Compiled extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. .eggs/
  14. *.egg-info/
  15. .installed.cfg
  16. *.egg
  17. # Virtual environments and local env files
  18. .venv/
  19. venv/
  20. ENV/
  21. env/
  22. env.bak/
  23. .env
  24. .env.*
  25. .python-version
  26. # Django
  27. db.sqlite3
  28. db.sqlite3-journal
  29. *.sqlite3
  30. media/
  31. staticfiles/
  32. # Logs
  33. *.log
  34. logs/
  35. # Unit test / coverage
  36. .coverage
  37. .coverage.*
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .pytest_cache/
  42. coverage.xml
  43. # Type checker caches
  44. .mypy_cache/
  45. .pyre/
  46. .pytype/
  47. .pyrightcache/
  48. # Editors / IDEs
  49. .vscode/
  50. .idea/
  51. *.suo
  52. *.ntvs*
  53. *.njsproj
  54. *.sln
  55. *.sw?
  56. *.iml
  57. # OS files
  58. .DS_Store
  59. Thumbs.db
  60. # Node / Frontend
  61. node_modules/
  62. npm-debug.log*
  63. yarn-debug.log*
  64. yarn-error.log*
  65. pnpm-debug.log*
  66. theme/static_src/node_modules/
  67. theme/static_src/.cache/
  68. theme/static_src/.next/
  69. theme/static_src/dist/
  70. # Tailwind / PostCSS artifacts
  71. theme/static_src/.tailwind-cache/
  72. *.map
  73. # Docker / temp
  74. docker-compose.override.yml
  75. .docker/
  76. .tmp/
  77. tmp/