django-embed-video/example_project
Juda Kaleta 07de8a3af8 Closes #11.
Major changes:

- filter ``embed`` is replaced by tag ``video``.
- removed caching for whole backend, caching properties instead.
- HTTP or HTTPS is set by context.is_secure() (just for ``video`` tag).
- backends can be HTTP only (``allow_https = False``).

Minor changes:

- changed theme of docs to RTD theme.
- help about testing HTTPS on development server.
- added and modified tests
2013-12-21 17:18:47 +01:00
..
example_project Closes #11. 2013-12-21 17:18:47 +01:00
posts Closes #11. 2013-12-21 17:18:47 +01:00
.gitignore Example project 2013-08-23 11:24:48 +02:00
embed_video Example project 2013-08-23 11:24:48 +02:00
manage.py Example project 2013-08-23 11:24:48 +02:00
README.rst Create superuser from fixture 2013-12-01 12:33:09 +01:00
requirements.txt Example project 2013-08-23 11:24:48 +02:00

How to run it?
**************

#. Install Django and PyYAML::

     pip install Django
     pip install pyyaml

#. Create database::

     python manage.py syncdb --noinput

#. Run testing server::

     python manage.py runserver

#. Take a look at http://localhost:8000 . You can log in to administration with username ``admin``
   and password ``admin``.