.gitignore 384 B

12345678910111213141516171819202122232425262728293031323334
  1. .DS_Store
  2. ._*
  3. *.pyc
  4. __pycache__/
  5. .mypy_cache/
  6. .eggs/
  7. tests/out/
  8. # Python and Node dependencies
  9. venv/
  10. .venv/
  11. .docker-venv/
  12. node_modules/
  13. # Ignore dev lockfiles (should always be built fresh)
  14. requirements-dev.txt
  15. pdm.dev.lock
  16. # Packaging artifacts
  17. .pdm-python
  18. .pdm-build
  19. archivebox.egg-info
  20. archivebox-*.tar.gz
  21. build/
  22. dist/
  23. # Data folders
  24. data/
  25. data*/
  26. output/
  27. # vim
  28. *.sw?
  29. .vscode/