.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib64/
  16. parts/
  17. sdist/
  18. var/
  19. wheels/
  20. pip-wheel-metadata/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. *.py,cover
  45. .hypothesis/
  46. .pytest_cache/
  47. coverage/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # IPython
  68. profile_default/
  69. ipython_config.py
  70. # pyenv
  71. .python-version
  72. # pipenv
  73. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  74. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  75. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  76. # install all needed dependencies.
  77. #Pipfile.lock
  78. # celery beat schedule file
  79. celerybeat-schedule
  80. # SageMath parsed files
  81. *.sage.py
  82. # Environments
  83. .env
  84. .venv
  85. env/
  86. venv/
  87. ENV/
  88. env.bak/
  89. venv.bak/
  90. # Spyder project settings
  91. .spyderproject
  92. .spyproject
  93. # Rope project settings
  94. .ropeproject
  95. # mkdocs documentation
  96. /site
  97. # mypy
  98. .mypy_cache/
  99. .dmypy.json
  100. dmypy.json
  101. # Pyre type checker
  102. .pyre/
  103. # vs code
  104. .vscode/
  105. # misc
  106. .idea/
  107. .env
  108. .DS_Store
  109. .env.local
  110. .env.development.local
  111. .env.test.local
  112. .env.production.local
  113. #front end
  114. node_modules
  115. .eslintcache
  116. /.pnp
  117. .pnp.js
  118. npm-debug.log*
  119. yarn-debug.log*
  120. yarn-error.log*
  121. # build
  122. packaged.yaml
  123. backend/lambda_layers/aws_sdk/python
  124. backend/lambda_layers/cr_helper/python
  125. backend/lambda_layers/decorators/python
  126. !backend/lambda_layers/decorators/python/decorators.py
  127. build.zip
  128. packaged.zip
  129. frontend/public/settings.js
  130. *.sentinel
  131. backend/ecs_tasks/*.tar
  132. # docs
  133. .openapi-generator/