feat: Passwordless auth — backend deployad, frontend uppdaterad

- Backend: Docker-container på port 8082
- Redis: Intern container (ingen exposed port)
- Nginx-config: nginx-passwordless.conf (väntar på deploy)
- Webb: API_BASE uppdaterad till api.quixzoom.com
- Fix: datetime timezone-aware i approve-endpoint
- Test: End-to-end flöde verifierat
This commit is contained in:
Bernt
2026-07-07 09:05:21 +00:00
parent 6989a98d75
commit 623561d30a
4 changed files with 58 additions and 9 deletions
+2 -3
View File
@@ -5,7 +5,7 @@ services:
build: .
container_name: quixzoom-passwordless
ports:
- "8080:8080"
- "8082:8080"
environment:
- PORT=8080
- HOST=0.0.0.0
@@ -28,8 +28,7 @@ services:
redis:
image: redis:7-alpine
container_name: quixzoom-auth-redis
ports:
- "6379:6379"
# No exposed port - internal only
volumes:
- redis-data:/data
networks: