You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

140 lines
1.9 KiB

4 years ago
  1. # secret passwords and so
  2. /secrets.json
  3. /staticfiles
  4. # /foerderbarometer/settings.py
  5. /foerderbarometer/*settings*
  6. /nohup.out
  7. /logfile
  8. *~
  9. # ---> Python
  10. # Byte-compiled / optimized / DLL files
  11. __pycache__/
  12. *.py[cod]
  13. *$py.class
  14. # C extensions
  15. *.so
  16. # Distribution / packaging
  17. .Python
  18. build/
  19. develop-eggs/
  20. dist/
  21. downloads/
  22. eggs/
  23. .eggs/
  24. lib/
  25. lib64/
  26. parts/
  27. sdist/
  28. var/
  29. wheels/
  30. pip-wheel-metadata/
  31. share/python-wheels/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. MANIFEST
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .nox/
  48. .coverage
  49. .coverage.*
  50. .cache
  51. nosetests.xml
  52. coverage.xml
  53. *.cover
  54. *.py,cover
  55. .hypothesis/
  56. .pytest_cache/
  57. # Translations
  58. *.mo
  59. *.pot
  60. # Django stuff:
  61. *.log
  62. local_settings.py
  63. db.sqlite3
  64. db.sqlite3-journal
  65. # Flask stuff:
  66. instance/
  67. .webassets-cache
  68. # Scrapy stuff:
  69. .scrapy
  70. # Sphinx documentation
  71. docs/_build/
  72. # PyBuilder
  73. target/
  74. # Jupyter Notebook
  75. .ipynb_checkpoints
  76. # IPython
  77. profile_default/
  78. ipython_config.py
  79. # pyenv
  80. .python-version
  81. # pipenv
  82. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  83. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  84. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  85. # install all needed dependencies.
  86. #Pipfile.lock
  87. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  88. __pypackages__/
  89. # Celery stuff
  90. celerybeat-schedule
  91. celerybeat.pid
  92. # SageMath parsed files
  93. *.sage.py
  94. # Environments
  95. .env
  96. .venv
  97. env/
  98. venv/
  99. ENV/
  100. env.bak/
  101. venv.bak/
  102. # Spyder project settings
  103. .spyderproject
  104. .spyproject
  105. # Rope project settings
  106. .ropeproject
  107. # mkdocs documentation
  108. /site
  109. # mypy
  110. .mypy_cache/
  111. .dmypy.json
  112. dmypy.json
  113. # Pyre type checker
  114. .pyre/