581 B
581 B
Use of Example project
- create virtual env
virtualenv venv - activate env
source venv/bin/activate - install requirements
pip install -r requirements.txt - cd to example project
cd example - migrate
python manage.py migrate - create super user
python manage.py createsuperuser - start the server
python manage.py runserver
Notes for SSL
To test FIDO2 you need to use HTTPS, after the above steps are done:
- stop the server
- install requirements
pip install -r example-ssl-requirements.txt - start the ssl server
python manage.py runsslserver