gitextract_d8hu4kk5/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── dev_build.yml │ ├── tests.yml │ └── type_check.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── alembic/ │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions/ │ └── 20260203_1616_initial_auth_683275eeb305.py ├── alembic.ini ├── app/ │ ├── __init__.py │ ├── auth/ │ │ ├── api_messages.py │ │ ├── dependencies.py │ │ ├── jwt.py │ │ ├── models.py │ │ ├── password.py │ │ ├── responses.py │ │ ├── schemas.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_jwt.py │ │ │ ├── test_password.py │ │ │ ├── test_view_delete_current_user.py │ │ │ ├── test_view_login_access_token.py │ │ │ ├── test_view_read_current_user.py │ │ │ ├── test_view_refresh_token.py │ │ │ ├── test_view_register_new_user.py │ │ │ └── test_view_reset_current_user_password.py │ │ └── views.py │ ├── conftest.py │ ├── core/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── database_session.py │ │ ├── lifespan.py │ │ ├── metrics.py │ │ └── models.py │ ├── main.py │ ├── probe/ │ │ ├── __init__.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ └── test_views.py │ │ └── views.py │ └── tests/ │ ├── auth.py │ └── factories.py ├── docker-compose.yml ├── init.sh └── pyproject.toml