Remove all authentication (login, sessions, bcrypt, itsdangerous) since the app runs on a private homelab LAN. Replace with a profile picker landing page and cookie-based profile selection (1-year expiry). - Add Alembic migration to drop password_hash/is_admin columns - Delete auth service, auth routes, login template, and auth tests - Rewrite app/utils/auth.py with NoProfileSelectedError and require_active_profile dependency - Add profile creation flow (GET/POST /profiles/create) - Rewrite home page as profile picker with card layout - Update all route files to use profile dependency instead of admin auth - Remove bcrypt and itsdangerous from requirements - Remove admin_username/admin_password from config - Update all tests for new profile-based access model Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
336 B
Plaintext
14 lines
336 B
Plaintext
fastapi>=0.115.0,<1.0.0
|
|
uvicorn[standard]>=0.34.0,<1.0.0
|
|
jinja2>=3.1.0,<4.0.0
|
|
structlog>=24.0.0,<25.0.0
|
|
python-dotenv>=1.0.0,<2.0.0
|
|
python-multipart>=0.0.20,<1.0.0
|
|
pyyaml>=6.0.0,<7.0.0
|
|
sqlmodel>=0.0.22,<1.0.0
|
|
alembic>=1.14.0,<2.0.0
|
|
httpx>=0.28.0,<1.0.0
|
|
pytest>=8.0.0,<9.0.0
|
|
pytest-asyncio>=0.24.0,<1.0.0
|
|
pydantic-settings>=2.7.0,<3.0.0
|