.gitignore 264 B

12345678910111213141516171819202122232425262728
  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. local.env/
  21. # Node.js
  22. node_modules/