6989a98d75
- 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
23 lines
438 B
Bash
23 lines
438 B
Bash
# 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
|