mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
Changelog correction and merge.
This commit is contained in:
commit
221178ad84
|
@ -2,10 +2,16 @@
|
|||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2015-09-17]
|
||||
## [2015-09-22]
|
||||
### Added
|
||||
- Add Python version option for deployment (@yunti)
|
||||
|
||||
## [2015-09-21]
|
||||
### Changed
|
||||
- django-mailgun-redux to django-mailgun, because @pydanny now has commit rights
|
||||
### Removed
|
||||
- Excess "loggers" from LOGGING setting (@siauPatrick)
|
||||
|
||||
## [2015-09-18]
|
||||
### Changed
|
||||
- Major reorganization of docs (@pydanny)
|
||||
|
|
|
@ -53,6 +53,7 @@ stepmr / @stepmr
|
|||
Adam Bogdał / @bogdal
|
||||
Barclay Gauld / @yunti
|
||||
Ian Lee / @IanLee1521
|
||||
Roman Afanaskin / @siauPatrick
|
||||
|
||||
* Possesses commit rights
|
||||
|
||||
|
|
|
@ -13,5 +13,6 @@
|
|||
"use_celery": "n",
|
||||
"use_maildump": "n",
|
||||
"use_sentry": "n",
|
||||
"windows": "n"
|
||||
"windows": "n",
|
||||
"use_python2": "n"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{% if cookiecutter.use_python2 == 'n' -%}
|
||||
FROM python:3.4
|
||||
{% else %}
|
||||
FROM python:2.7
|
||||
{%- endif %}
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
# Requirements have to be pulled and installed here, otherwise caching won't work
|
||||
|
|
|
@ -260,15 +260,13 @@ LOGGING = {
|
|||
'django.request': {
|
||||
'handlers': ['mail_admins'],
|
||||
'level': 'ERROR',
|
||||
'propagate': True,
|
||||
'propagate': True
|
||||
},
|
||||
'loggers': {
|
||||
'django.security.DisallowedHost': {
|
||||
'level': 'ERROR',
|
||||
'handlers': ['console', 'mail_admins'],
|
||||
'propagate': True,
|
||||
},
|
||||
},
|
||||
'propagate': True
|
||||
}
|
||||
}
|
||||
}
|
||||
{% if cookiecutter.use_celery == "y" %}
|
||||
|
|
|
@ -17,7 +17,7 @@ Collectfast==0.2.3
|
|||
|
||||
# Mailgun Support
|
||||
# ---------------
|
||||
django-mailgun-redux==0.3.0
|
||||
django-mailgun==0.6.0
|
||||
|
||||
{% if cookiecutter.use_sentry == "y" -%}
|
||||
# Raven is the Sentry client
|
||||
|
|
3
{{cookiecutter.repo_name}}/runtime.txt
Normal file
3
{{cookiecutter.repo_name}}/runtime.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
{% if cookiecutter.use_python2 == 'n' -%}
|
||||
python-3.4.3
|
||||
{%- endif %}
|
Loading…
Reference in New Issue
Block a user