Example project

For easy start with using django-embed-video, you can take a look at example project. It is located in example_project directory in root of repository.

Running example project

  1. Install requirements:

    pip install -r requirements.txt
    
  2. Create database:

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

    Or, for older versions of Django:

    python manage.py syncdb --noinput
    
  3. Run testing server:

    python manage.py runserver
    
  4. 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.