Skip to content

Latest commit

 

History

History
executable file
·
28 lines (16 loc) · 620 Bytes

README.rst

File metadata and controls

executable file
·
28 lines (16 loc) · 620 Bytes

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.