.gitignore 194 B

123456789101112131415161718192021
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # Pelican
  7. output/
  8. # Environments
  9. .env
  10. .venv
  11. env/
  12. venv/
  13. ENV/
  14. env.bak/
  15. venv.bak/
  16. # Node.js
  17. node_modules/