.dockerignore 327 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Git
  2. .git
  3. .gitignore
  4. # Python
  5. __pycache__
  6. *.pyc
  7. *.pyo
  8. venv/
  9. .venv/
  10. *.egg-info/
  11. .pytest_cache/
  12. # Node
  13. node_modules/
  14. frontend/node_modules/
  15. # Build artifacts
  16. frontend/dist/
  17. *.log
  18. # IDE
  19. .idea/
  20. .vscode/
  21. *.swp
  22. # Environment
  23. .env
  24. .env.local
  25. backend/.env
  26. # Database
  27. *.db
  28. *.sqlite
  29. # Kiro specs
  30. .kiro/
  31. # OS
  32. .DS_Store
  33. Thumbs.db