.gitignore 793 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. build
  15. dist
  16. word_processor.egg-info
  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. # Shell history and other local configuration can be kept here.
  39. .home
  40. # Configuration file for docker-compose
  41. .env
  42. env/*