django-embed-video/docs/installation.rst
2013-12-22 16:40:40 +01:00

43 lines
848 B
ReStructuredText

Installation & Setup
==============================================
Installation
##############################################
Use pip to install package:
.. code-block:: bash
pip install django-embed-video
If you want latest version, you may use Git. It is fresh, but unstable.
.. code-block:: bash
pip install git+https://github.com/yetty/django-embed-video.git
Setup
##############################################
Add ``embed_video`` to :py:data:`~django.settings.INSTALLED_APPS` in your Django
settings.
.. code-block:: python
INSTALLED_APPS = (
...
'embed_video',
)
To detect HTTP/S you have to use :py:class:`~django.core.context_processors.request`
context processor:
.. code-block:: python
TEMPLATE_CONTEXT_PROCESSORS = (
...
'django.core.context_processors.request',
)