.gitignore 255 B

123456789101112131415161718192021222324252627
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # Compiled translation catalogs
  7. *.mo
  8. # Pelican
  9. output/
  10. # Makefile
  11. # Environments
  12. .env
  13. .venv
  14. env/
  15. venv/
  16. ENV/
  17. env.bak/
  18. venv.bak/
  19. local.env/
  20. # Node.js
  21. node_modules/