Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

yackermann/U2F-Flask-Demo

Repository files navigation

How to cook it?

Initialize virtual environment

virtualenv venv
source ./venv/bin/activate

Install dependencies

pip install -r requirements.txt

Initialize Database

python create_db.py

Generate private key and certificate for SSL

openssl req -newkey rsa:2048 -nodes -keyout domain.key -x509 -days 365 -out domain.crt

Generate new cookie master key

python reset_cookie_key.py

Run application

./run.py

TODO

  • Write API docs
  • Implement facets support
  • Documentation
  • Unit tests

License

MIT © Yuriy Ackermann