.gitignore 339 B

123456789101112131415161718192021222324252627282930313233343536
  1. __pycache__
  2. */__pycache__
  3. .DS_Store
  4. node_modules
  5. /dist
  6. # local env files
  7. /env/
  8. /venv/
  9. .env.local
  10. .env.*.local
  11. # Log files
  12. npm-debug.log*
  13. yarn-debug.log*
  14. yarn-error.log*
  15. # Editor directories and files
  16. .idea
  17. .vscode
  18. *.suo
  19. *.ntvs*
  20. *.njsproj
  21. *.sln
  22. *.sw?
  23. # Private configs
  24. /config.py
  25. /test.py
  26. #build files
  27. /build
  28. /*egg-info
  29. updatePyPi.sh