.gitignore 283 B

123456789101112131415161718192021222324252627282930
  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. Makefile
  12. # Environments
  13. .env
  14. .venv
  15. env/
  16. venv/
  17. ENV/
  18. env.bak/
  19. venv.bak/
  20. # Comments
  21. content/comments/
  22. # Node.js
  23. node_modules/