Added Whitelist for /compose/local/ (#1322)

Something in the file above ignores the /compose/local directory, which is not an expected pattern. Barring a reasonable explanation or modification of the above rules, this whitelists that folder.
This commit is contained in:
Mark Liederbach 2017-09-06 01:33:35 -05:00 committed by Shupeyko Nikita
parent a42df4f1b2
commit 7cb8da9df6

View File

@ -361,3 +361,9 @@ mailhog
{% endif %}
{{ cookiecutter.project_slug }}/media/
{% if cookiecutter.use_docker == 'y' -%}
# Added to maintain local compose files which are ignored by something above.
# See issue https://github.com/pydanny/cookiecutter-django/issues/1321
!/compose/local/
{% endif %}