gitextract_w5avl08v/ ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── docker.yml │ ├── pypi.yml │ └── tests.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── alembic/ │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions/ │ ├── 130b5c2275d8_update_ip_token_association.py │ └── 140a25d5f185_create_tokens_table.py ├── alembic.ini ├── config.sample.yaml ├── default.nix ├── docker.nix ├── matrix_registration/ │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── config.py │ ├── config.schema.json │ ├── constants.py │ ├── limiter.py │ ├── matrix_api.py │ ├── static/ │ │ ├── css/ │ │ │ └── style.css │ │ └── fonts/ │ │ └── NUNITO-LICENSE │ ├── templates/ │ │ └── register.html │ ├── tokens.py │ ├── translation.py │ ├── translations/ │ │ ├── messages.de.yaml │ │ ├── messages.en.yaml │ │ ├── messages.pt_BR.yaml │ │ ├── messages.sv.yaml │ │ └── messages.zh_Hans.yaml │ └── wordlist.txt ├── resources/ │ ├── docker-run.sh │ ├── docker-serve.sh │ └── example.html ├── setup.py ├── shell.nix ├── tests/ │ ├── __init__.py │ ├── context.py │ ├── localhost.log.config │ ├── localhost.signing.key │ └── test_registration.py └── tox.ini