Fix elastic beanstalk checks

This commit is contained in:
Daniel Roy Greenfeld 2016-09-28 16:42:02 -07:00 committed by Fabio C. Barrioneuvo da Luz
parent f803f8f2ab
commit a091dcbae8
2 changed files with 5 additions and 5 deletions

View File

@ -117,7 +117,7 @@ Deployment
----------
The following details how to deploy this application.
{% if cookiecutter.use_heroku == "y" %}
{% if cookiecutter.use_heroku.lower() == "y" %}
Heroku
^^^^^^
@ -129,7 +129,7 @@ See detailed `cookiecutter-django Heroku documentation`_.
.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html
{% endif %}
{% if cookiecutter.use_docker == "y" %}
{% if cookiecutter.use_docker.lower() == "y" %}
Docker
^^^^^^
@ -138,7 +138,7 @@ See detailed `cookiecutter-django Docker documentation`_.
.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html
{% endif %}
{% if cookiecutter.use_elasticbeanstalk_experimental %}
{% if cookiecutter.use_elasticbeanstalk_experimental.lower() == 'y' %}
Elastic Beanstalk
~~~~~~~~~~~~~~~~~~

View File

@ -178,7 +178,7 @@ TEMPLATES[0]['OPTIONS']['loaders'] = [
# DATABASE CONFIGURATION
# ------------------------------------------------------------------------------
{% if cookiecutter.use_elasticbeanstalk_experimental -%}
{% if cookiecutter.use_elasticbeanstalk_experimental.lower() == 'y' -%}
# Uses Amazon RDS for database hosting, which doesn't follow the Heroku-style spec
DATABASES = {
'default': {
@ -198,7 +198,7 @@ DATABASES['default'] = env.db('DATABASE_URL')
# CACHING
# ------------------------------------------------------------------------------
{% if cookiecutter.use_elasticbeanstalk_experimental -%}
{% if cookiecutter.use_elasticbeanstalk_experimental.lower() == 'y' -%}
REDIS_LOCATION = "redis://{}:{}/0".format(
env('REDIS_ENDPOINT_ADDRESS'),
env('REDIS_PORT')