Files
boc/landvex/.env.example
T
Bernt 6989a98d75 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
2026-07-07 07:11:50 +00:00

34 lines
659 B
Bash

# Database
DB_HOST=localhost
DB_PORT=5432
DB_NAME=landvex
DB_USER=postgres
DB_PASSWORD=your_password
# OpenAI
OPENAI_API_KEY=sk-your-openai-key
# Anthropic (alternative)
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
# Server
PORT=3000
NODE_ENV=development
# JWT
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# Email (for report delivery)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASSWORD=your-app-password
# Redis (for Bull queues)
REDIS_URL=redis://localhost:6379
# API Keys for data sources
STATISTA_API_KEY=your-statista-key
QUIXZOOM_API_KEY=your-quixzoom-key
GOOGLE_TRENDS_API_KEY=your-google-trends-key