index.rst 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Getting started
  2. ===============
  3. Wagtail is built on the `Django web framework <https://www.djangoproject.com/>`_, so this document assumes you've already got the essentials installed. But if not, those essentials are:
  4. * `Python <https://www.python.org/downloads/>`_
  5. * `pip <https://pip.pypa.io/en/latest/installing.html>`_ (Note that pip is included by default with Python 2.7.9 and later and Python 3.4 and later)
  6. We'd also recommend Virtualenv, which provides isolated Python environments:
  7. * `Virtualenv <https://virtualenv.pypa.io/en/latest/installation.html>`_
  8. .. important::
  9. Before installing Wagtail, it is necessary to install the **libjpeg** and **zlib** libraries, which provide support for working with JPEG, PNG and GIF images (via the Python **Pillow** library). The way to do this varies by platform - see Pillow's `platform-specific installation instructions <http://pillow.readthedocs.org/en/latest/installation.html#external-libraries>`_.
  10. With the above installed, the quickest way to install Wagtail is::
  11. pip install wagtail
  12. (``sudo`` may be required if installing system-wide or without virtualenv)
  13. Once installed, Wagtail provides a command similar to Django's ``django-admin startproject`` which stubs out a new site/project::
  14. wagtail start mysite
  15. This will create a new folder ``mysite``, based on a template containing all you need to get started. More information on that template is available :doc:`here </reference/project_template>`.
  16. Inside your ``mysite`` folder, we now just run the setup steps necessary for any Django project::
  17. pip install -r requirements.txt
  18. ./manage.py migrate
  19. ./manage.py createsuperuser
  20. ./manage.py runserver
  21. Your site is now accessible at ``http://localhost:8000``, with the admin backend available at ``http://localhost:8000/admin/``.
  22. This will set you up with a new standalone Wagtail project. If you'd like to add Wagtail to an existing Django project instead, see :doc:`integrating_into_django`.
  23. There are a few optional packages which are not installed by default but are recommended to improve performance or add features to Wagtail, including:
  24. * :doc:`Elasticsearch </advanced_topics/performance>`.
  25. * :ref:`image_feature_detection`.
  26. .. toctree::
  27. :maxdepth: 2
  28. tutorial
  29. demo_site
  30. integrating_into_django