Fix docstrings

This commit is contained in:
Alexandre Provencio 2016-08-31 12:48:25 -03:00
parent 043ff3d8dc
commit 3ad2d5c61e
2 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,11 @@
Local settings Local settings
- Run in Debug mode - Run in Debug mode
{% if cookiecutter.use_mailhog == 'y' and cookiecutter.use_docker == 'y' %}
- Use mailhog for emails
{% else %}
- Use console backend for emails - Use console backend for emails
{% endif %}
- Add Django Debug Toolbar - Add Django Debug Toolbar
- Add django-extensions as app - Add django-extensions as app
""" """

View File

@ -2,10 +2,9 @@
""" """
Production Configurations Production Configurations
- Use djangosecure
- Use Amazon's S3 for storing static files and uploaded media - Use Amazon's S3 for storing static files and uploaded media
- Use mailgun to send emails - Use mailgun to send emails
- Use Redis on Heroku - Use Redis for cache
{% if cookiecutter.use_sentry_for_error_reporting == 'y' %} {% if cookiecutter.use_sentry_for_error_reporting == 'y' %}
- Use sentry for error logging - Use sentry for error logging
{% endif %} {% endif %}