.gitignore 295 B

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