Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 581 Bytes

Example.md

File metadata and controls

18 lines (14 loc) · 581 Bytes

Use of Example project

  1. create virtual env virtualenv venv
  2. activate env source venv/bin/activate
  3. install requirements pip install -r requirements.txt
  4. cd to example project cd example
  5. migrate python manage.py migrate
  6. create super user python manage.py createsuperuser
  7. start the server python manage.py runserver

Notes for SSL

For passkeys, you need to use HTTPS, after the above steps are done:

  1. stop the server
  2. install requirements pip install -r example-ssl-requirements.txt
  3. start the ssl server python manage.py runsslserver