.gitignore 809 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. env/
  2. virtualenv/
  3. venv/
  4. node_modules/
  5. __pycache__
  6. **/__pycache__
  7. telecaster/__pycache__/
  8. *.pyc
  9. .pipcache
  10. .benchmarks/
  11. .pytest_cache
  12. .mypy_cache
  13. .DS_Store
  14. .vscode/
  15. newrelic_agent.log
  16. /tags
  17. # PyCharm stuff we don't need to keep in our repo.
  18. .idea/codeStyles/
  19. .idea/codeStyleSettings.xml
  20. .idea/dataSources*
  21. .idea/dataSources/
  22. .idea/encodings.xml
  23. .idea/GitScope.xml
  24. .idea/inspectionProfiles/
  25. .idea/jsLibraryMappings.xml
  26. .idea/maple.iml
  27. .idea/markdown-navigator*
  28. .idea/misc.xml
  29. .idea/mypy.xml
  30. .idea/remote-mappings.xml
  31. .idea/shelf/
  32. .idea/tasks.xml
  33. .idea/workspace.xml
  34. .tags
  35. .tags1
  36. stellar.yaml
  37. # Special place for the home directory in the docker containers (see docker-compose.dev.yml).
  38. *.local*
  39. # Shell history and other local configuration can be kept here.
  40. .home
  41. # Configuration file for docker-compose
  42. .env