Merge branch 'master' into prevent-pycharm-from-formatting-raven-and-opbeat-imports

This commit is contained in:
Nikita P. Shupeyko 2017-03-16 13:06:26 +03:00
commit adfd13b81d
11 changed files with 14 additions and 17 deletions

View File

@ -141,8 +141,7 @@ Answer the prompts with your own desired options_. For example::
Select js_task_runner:
1 - Gulp
2 - Grunt
3 - Webpack
4 - None
3 - None
Choose from 1, 2, 3, 4 [1]: 1
use_lets_encrypt [n]: n
Select open_source_license:

View File

@ -140,6 +140,7 @@ Click through to the **WSGI configuration file** link (near the top) and edit th
os.environ['DJANGO_ADMIN_URL'] = '<as above>'
os.environ['DJANGO_MAILGUN_API_KEY'] = '<as above>'
os.environ['DJANGO_MAILGUN_SERVER_NAME'] = '<as above>'
os.environ['MAILGUN_SENDER_DOMAIN'] = '<as above>'
os.environ['DJANGO_AWS_ACCESS_KEY_ID'] = ''
os.environ['DJANGO_AWS_SECRET_ACCESS_KEY'] = ''
os.environ['DJANGO_AWS_STORAGE_BUCKET_NAME'] = ''

View File

@ -74,8 +74,7 @@ js_task_runner [1]
1. Gulp_
2. Grunt_
3. Webpack_
4. None
3. None
use_lets_encrypt [n]
Use `Let's Encrypt`_ as the certificate authority for this project.

View File

@ -1,6 +1,6 @@
cookiecutter==1.5.1
flake8==3.2.1 # pyup: != 2.6.0
sh==1.12.9
flake8==3.3.0 # pyup: != 2.6.0
sh==1.12.10
binaryornot==0.4.0
# Testing

View File

@ -24,7 +24,7 @@ Resources:
CacheNodeType:
Fn::GetOptionSetting:
OptionName : "CacheNodeType"
DefaultValue : "cache.t1.micro"
DefaultValue : "cache.t2.micro"
NumCacheNodes:
Fn::GetOptionSetting:
OptionName : "NumCacheNodes"

View File

@ -1,6 +1,6 @@
option_settings:
"aws:elasticbeanstalk:customoption":
CacheNodeType : cache.t1.micro
CacheNodeType : cache.t2.micro
NumCacheNodes : 1
Engine : redis
CachePort : 6379

View File

@ -260,8 +260,6 @@ AUTOSLUG_SLUGIFY_FUNCTION = 'slugify.slugify'
{% if cookiecutter.use_celery == 'y' %}
########## CELERY
INSTALLED_APPS += ['{{cookiecutter.project_slug}}.taskapp.celery.CeleryConfig']
# if you are not using the django database broker (e.g. rabbitmq, redis, memcached), you can remove the next line.
INSTALLED_APPS += ['kombu.transport.django']
BROKER_URL = env('CELERY_BROKER_URL', default='django://')
if BROKER_URL == 'django://':
CELERY_RESULT_BACKEND = 'redis://'

View File

@ -7,7 +7,7 @@ wheel==0.29.0
{%- endif %}
# Bleeding edge Django
django==1.10.5
django==1.10.6
# Configuration
django-environ==0.4.1
@ -28,14 +28,14 @@ Pillow==4.0.0
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth==0.30.0
django-allauth==0.31.0
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.6.2
psycopg2==2.7
{%- endif %}
# Unicode slugification
@ -49,7 +49,7 @@ django-redis==4.7.0
redis>=2.10.5
{% if cookiecutter.use_celery == "y" %}
celery==3.1.24
celery==4.0.2
{% endif %}
{% if cookiecutter.use_compressor == "y" %}

View File

@ -4,7 +4,7 @@
coverage==4.3.4
django-coverage-plugin==1.5.0
Sphinx==1.5.2
Sphinx==1.5.3
django-extensions==1.7.7
Werkzeug==0.11.15
django-test-plus==1.0.17

View File

@ -6,7 +6,7 @@
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.6.2
psycopg2==2.7
{%- endif %}
# WSGI Handler

View File

@ -4,7 +4,7 @@
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in test/prod
psycopg2==2.6.2
psycopg2==2.7
{%- endif %}
coverage==4.3.4