kopia lustrzana https://github.com/wagtail/wagtail
Allow any host in development
rodzic
8c5b1bc7ba
commit
edbfba5af3
|
@ -21,6 +21,7 @@ Changelog
|
|||
* ImageChooser now sets a default title based on filename (Coen van der Kamp)
|
||||
* Added error handling to the Draftail editor (Thibaud Colas)
|
||||
* Add new `wagtail_icon` template tag to facilitate making admin icons accessible (Sander Tuit)
|
||||
* Set `ALLOWED_HOSTS` in the project template to allow any host in development (Tom Dyson)
|
||||
* Fix: Status button on 'edit page' now links to the correct URL when live and draft slug differ (LB (Ben Johnston))
|
||||
* Fix: Image title text in the gallery and in the chooser now wraps for long filenames (LB (Ben Johnston), Luiz Boaretto)
|
||||
* Fix: Move image editor action buttons to the bottom of the form on mobile (Julian Gallo)
|
||||
|
|
|
@ -35,6 +35,7 @@ Other features
|
|||
* ImageChooser now sets a default title based on filename (Coen van der Kamp)
|
||||
* Added error handling to the Draftail editor (Thibaud Colas)
|
||||
* Add new `wagtail_icon` template tag to facilitate making admin icons accessible (Sander Tuit)
|
||||
* Set `ALLOWED_HOSTS` in the project template to allow any host in development (Tom Dyson)
|
||||
|
||||
Bug fixes
|
||||
~~~~~~~~~
|
||||
|
|
|
@ -6,6 +6,8 @@ DEBUG = True
|
|||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = '{{ secret_key }}'
|
||||
|
||||
# SECURITY WARNING: define the correct hosts in production!
|
||||
ALLOWED_HOSTS = ['*']
|
||||
|
||||
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue