123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- ==================================================
- How to add Wagtail into an existing Django project
- ==================================================
- To install Wagtail completely from scratch, create a new Django project and an app within that project. For instructions on these tasks, see :doc:`Writing your first Django app <django:intro/tutorial01>`. Your project directory will look like the following::
- myproject/
- myproject/
- __init__.py
- settings.py
- urls.py
- wsgi.py
- myapp/
- __init__.py
- models.py
- tests.py
- admin.py
- views.py
- manage.py
- From your app directory, you can safely remove ``admin.py`` and ``views.py``, since Wagtail will provide this functionality for your models. Configuring Django to load Wagtail involves adding modules and variables to ``settings.py`` and URL configuration to ``urls.py``. For a more complete view of what's defined in these files, see :doc:`Django Settings <django:topics/settings>` and :doc:`Django URL Dispatcher <django:topics/http/urls>`.
- What follows is a settings reference which skips many boilerplate Django settings. If you just want to get your Wagtail install up quickly without fussing with settings at the moment, see :ref:`complete_example_config`.
- Middleware (``settings.py``)
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- .. code-block:: python
- MIDDLEWARE = [
- 'django.contrib.sessions.middleware.SessionMiddleware',
- 'django.middleware.common.CommonMiddleware',
- 'django.middleware.csrf.CsrfViewMiddleware',
- 'django.contrib.auth.middleware.AuthenticationMiddleware',
- 'django.contrib.messages.middleware.MessageMiddleware',
- 'django.middleware.clickjacking.XFrameOptionsMiddleware',
- 'django.middleware.security.SecurityMiddleware',
- 'wagtail.contrib.redirects.middleware.RedirectMiddleware',
- ]
- Wagtail depends on the default set of Django middleware modules, to cover basic security and functionality such as login sessions. One additional middleware module is provided:
- ``RedirectMiddleware``
- Wagtail provides a simple interface for adding arbitrary redirects to your site and this module makes it happen.
- Apps (``settings.py``)
- ~~~~~~~~~~~~~~~~~~~~~~
- .. code-block:: python
- INSTALLED_APPS = [
- 'myapp', # your own app
- 'wagtail.contrib.forms',
- 'wagtail.contrib.redirects',
- 'wagtail.embeds',
- 'wagtail.sites',
- 'wagtail.users',
- 'wagtail.snippets',
- 'wagtail.documents',
- 'wagtail.images',
- 'wagtail.search',
- 'wagtail.admin',
- 'wagtail.core',
- 'taggit',
- 'modelcluster',
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.messages',
- 'django.contrib.staticfiles',
- ]
- Wagtail requires several Django app modules, third-party apps, and defines several apps of its own. Wagtail was built to be modular, so many Wagtail apps can be omitted to suit your needs. Your own app (here ``myapp``) is where you define your models, templates, static assets, template tags, and other custom functionality for your site.
- Wagtail Apps
- ------------
- ``wagtail.core``
- The core functionality of Wagtail, such as the ``Page`` class, the Wagtail tree, and model fields.
- ``wagtail.admin``
- The administration interface for Wagtail, including page edit handlers.
- ``wagtail.documents``
- The Wagtail document content type.
- ``wagtail.snippets``
- Editing interface for non-Page models and objects. See :ref:`Snippets`.
- ``wagtail.users``
- User editing interface.
- ``wagtail.images``
- The Wagtail image content type.
- ``wagtail.embeds``
- Module governing oEmbed and Embedly content in Wagtail rich text fields. See :ref:`inserting_videos`.
- ``wagtail.search``
- Search framework for Page content. See :ref:`wagtailsearch`.
- ``wagtail.sites``
- Management UI for Wagtail sites.
- ``wagtail.contrib.redirects``
- Admin interface for creating arbitrary redirects on your site.
- ``wagtail.contrib.forms``
- Models for creating forms on your pages and viewing submissions. See :ref:`form_builder`.
- Third-Party Apps
- ----------------
- ``taggit``
- Tagging framework for Django. This is used internally within Wagtail for image and document tagging and is available for your own models as well. See :ref:`tagging` for a Wagtail model recipe or the `Taggit Documentation`_.
- .. _Taggit Documentation: https://django-taggit.readthedocs.org/en/latest/index.html
- ``modelcluster``
- Extension of Django ForeignKey relation functionality, which is used in Wagtail pages for on-the-fly related object creation. For more information, see :ref:`inline_panels` or `the django-modelcluster github project page`_.
- .. _the django-modelcluster github project page: https://github.com/torchbox/django-modelcluster
- URL Patterns
- ~~~~~~~~~~~~
- .. code-block:: python
- from django.contrib import admin
- from wagtail.core import urls as wagtail_urls
- from wagtail.admin import urls as wagtailadmin_urls
- from wagtail.documents import urls as wagtaildocs_urls
- urlpatterns = [
- path('django-admin/', admin.site.urls),
- path('admin/', include(wagtailadmin_urls)),
- path('documents/', include(wagtaildocs_urls)),
- # Optional URL for including your own vanilla Django urls/views
- re_path(r'', include('myapp.urls')),
- # For anything not caught by a more specific rule above, hand over to
- # Wagtail's serving mechanism
- re_path(r'', include(wagtail_urls)),
- ]
- This block of code for your project's ``urls.py`` does a few things:
- * Load the vanilla Django admin interface to ``/django-admin/``
- * Load the Wagtail admin and its various apps
- * Dispatch any vanilla Django apps you're using other than Wagtail which require their own URL configuration (this is optional, since Wagtail might be all you need)
- * Lets Wagtail handle any further URL dispatching.
- That's not everything you might want to include in your project's URL configuration, but it's what's necessary for Wagtail to flourish.
- .. _complete_example_config:
- Ready to Use Example Configuration Files
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- These two files should reside in your project directory (``myproject/myproject/``).
- ``settings.py``
- ---------------
- .. code-block:: python
- import os
- PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
- BASE_DIR = os.path.dirname(PROJECT_DIR)
- DEBUG = True
- # Application definition
- INSTALLED_APPS = [
- 'myapp',
- 'wagtail.contrib.forms',
- 'wagtail.contrib.redirects',
- 'wagtail.embeds',
- 'wagtail.sites',
- 'wagtail.users',
- 'wagtail.snippets',
- 'wagtail.documents',
- 'wagtail.images',
- 'wagtail.search',
- 'wagtail.admin',
- 'wagtail.core',
- 'taggit',
- 'modelcluster',
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.messages',
- 'django.contrib.staticfiles',
- ]
- MIDDLEWARE = [
- 'django.contrib.sessions.middleware.SessionMiddleware',
- 'django.middleware.common.CommonMiddleware',
- 'django.middleware.csrf.CsrfViewMiddleware',
- 'django.contrib.auth.middleware.AuthenticationMiddleware',
- 'django.contrib.messages.middleware.MessageMiddleware',
- 'django.middleware.clickjacking.XFrameOptionsMiddleware',
- 'django.middleware.security.SecurityMiddleware',
- 'wagtail.contrib.redirects.middleware.RedirectMiddleware',
- ]
- ROOT_URLCONF = 'myproject.urls'
- TEMPLATES = [
- {
- 'BACKEND': 'django.template.backends.django.DjangoTemplates',
- 'DIRS': [
- os.path.join(PROJECT_DIR, 'templates'),
- ],
- 'APP_DIRS': True,
- 'OPTIONS': {
- 'context_processors': [
- 'django.template.context_processors.debug',
- 'django.template.context_processors.request',
- 'django.contrib.auth.context_processors.auth',
- 'django.contrib.messages.context_processors.messages',
- ],
- },
- },
- ]
- WSGI_APPLICATION = 'myproject.wsgi.application'
- # Database
- DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.postgresql',
- 'NAME': 'myprojectdb',
- 'USER': 'postgres',
- 'PASSWORD': '',
- 'HOST': '', # Set to empty string for localhost.
- 'PORT': '', # Set to empty string for default.
- 'CONN_MAX_AGE': 600, # number of seconds database connections should persist for
- }
- }
- # Internationalization
- LANGUAGE_CODE = 'en-us'
- TIME_ZONE = 'UTC'
- USE_I18N = True
- USE_L10N = True
- USE_TZ = True
- # Static files (CSS, JavaScript, Images)
- STATICFILES_FINDERS = [
- 'django.contrib.staticfiles.finders.FileSystemFinder',
- 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
- ]
- STATICFILES_DIRS = [
- os.path.join(PROJECT_DIR, 'static'),
- ]
- STATIC_ROOT = os.path.join(BASE_DIR, 'static')
- STATIC_URL = '/static/'
- MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
- MEDIA_URL = '/media/'
- ADMINS = [
- # ('Your Name', 'your_email@example.com'),
- ]
- MANAGERS = ADMINS
- # Default to dummy email backend. Configure dev/production/local backend
- # as per https://docs.djangoproject.com/en/stable/topics/email/#email-backends
- EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'
- # Hosts/domain names that are valid for this site; required if DEBUG is False
- ALLOWED_HOSTS = []
- # Make this unique, and don't share it with anybody.
- SECRET_KEY = 'change-me'
- EMAIL_SUBJECT_PREFIX = '[Wagtail] '
- INTERNAL_IPS = ('127.0.0.1', '10.0.2.2')
- # A sample logging configuration. The only tangible logging
- # performed by this configuration is to send an email to
- # the site admins on every HTTP 500 error when DEBUG=False.
- # See https://docs.djangoproject.com/en/stable/topics/logging for
- # more details on how to customize your logging configuration.
- LOGGING = {
- 'version': 1,
- 'disable_existing_loggers': False,
- 'filters': {
- 'require_debug_false': {
- '()': 'django.utils.log.RequireDebugFalse'
- }
- },
- 'handlers': {
- 'mail_admins': {
- 'level': 'ERROR',
- 'filters': ['require_debug_false'],
- 'class': 'django.utils.log.AdminEmailHandler'
- }
- },
- 'loggers': {
- 'django.request': {
- 'handlers': ['mail_admins'],
- 'level': 'ERROR',
- 'propagate': True,
- },
- }
- }
- # WAGTAIL SETTINGS
- # This is the human-readable name of your Wagtail install
- # which welcomes users upon login to the Wagtail admin.
- WAGTAIL_SITE_NAME = 'My Project'
- # Override the search results template for wagtailsearch
- # WAGTAILSEARCH_RESULTS_TEMPLATE = 'myapp/search_results.html'
- # WAGTAILSEARCH_RESULTS_TEMPLATE_AJAX = 'myapp/includes/search_listing.html'
- # Replace the search backend
- #WAGTAILSEARCH_BACKENDS = {
- # 'default': {
- # 'BACKEND': 'wagtail.search.backends.elasticsearch5',
- # 'INDEX': 'myapp'
- # }
- #}
- # Wagtail email notifications from address
- # WAGTAILADMIN_NOTIFICATION_FROM_EMAIL = 'wagtail@myhost.io'
- # Wagtail email notification format
- # WAGTAILADMIN_NOTIFICATION_USE_HTML = True
- # Reverse the default case-sensitive handling of tags
- TAGGIT_CASE_INSENSITIVE = True
- ``urls.py``
- -----------
- .. code-block:: python
- from django.urls import include, path, re_path
- from django.conf.urls.static import static
- from django.views.generic.base import RedirectView
- from django.contrib import admin
- from django.conf import settings
- import os.path
- from wagtail.core import urls as wagtail_urls
- from wagtail.admin import urls as wagtailadmin_urls
- from wagtail.documents import urls as wagtaildocs_urls
- urlpatterns = [
- path('django-admin/', admin.site.urls),
- path('admin/', include(wagtailadmin_urls)),
- path('documents/', include(wagtaildocs_urls)),
- # For anything not caught by a more specific rule above, hand over to
- # Wagtail's serving mechanism
- re_path(r'', include(wagtail_urls)),
- ]
- if settings.DEBUG:
- from django.contrib.staticfiles.urls import staticfiles_urlpatterns
- urlpatterns += staticfiles_urlpatterns() # tell gunicorn where static files are in dev mode
- urlpatterns += static(settings.MEDIA_URL + 'images/', document_root=os.path.join(settings.MEDIA_ROOT, 'images'))
- urlpatterns += [
- path('favicon.ico', RedirectView.as_view(url=settings.STATIC_URL + 'myapp/images/favicon.ico'))
- ]
|