.gitignore 757 B

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