feat: Passwordless cross-device authentication

- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
This commit is contained in:
Bernt
2026-07-07 07:11:50 +00:00
parent 4aa984ad74
commit 6989a98d75
61843 changed files with 5491611 additions and 872231 deletions
+22
View File
@@ -0,0 +1,22 @@
# Database
DATABASE_URL=./data/content.db
# OpenAI API (for AI translation)
OPENAI_API_KEY=sk-...
# Redis (for BullMQ job queues)
REDIS_URL=redis://localhost:6379
# JWT Secret
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# Admin credentials (change in production!)
ADMIN_EMAIL=admin@landvex.com
ADMIN_PASSWORD=changeme
# Resend API (for notifications)
RESEND_API_KEY=re_...
# Environment
NODE_ENV=development
PORT=3000