django-embed-video/example_project
2017-04-20 13:33:28 +02:00
..
example_project Updates for Django 1.10 and 1.11 (#73) 2017-04-20 13:33:28 +02:00
posts Updates for Django 1.10 and 1.11 (#73) 2017-04-20 13:33:28 +02: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 Updates for Django 1.10 and 1.11 (#73) 2017-04-20 13:33:28 +02:00
requirements.txt Update requirements for installation of the example project (#72) 2017-04-20 13:25:38 +02:00

Running example project
***********************

#. Install requirements::

     pip install -r requirements.txt

#. Create database::

     python manage.py migrate --run-syncdb --noinput

   Or, for older versions of Django::

     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``.


Testing HTTPS
*************

To test HTTPS on development server, `follow this instructions
<http://www.ianlewis.org/en/testing-https-djangos-development-server>`_.