A basic implementation of a WebAuthn RP using the py_webauthn library for passwordless account registration and authentication.
- Python 3.9+
First, set up a virtual environment:
python3 -m venv venv && source venv/bin/activateNext, install dependencies:
pip install -r requirements.txtFinally, run the server to view the demo at http://localhost:5000:
./start-server.shWindows users can instead use
./Start-Server.ps1