chore: enhance environment configuration for frontend and Google authentication

- Add VITE_API_URL to docker-compose for frontend service.
- Introduce FRONTEND_URL in backend environment files for redirection after Google login.
- Update Google authentication router to use dynamic FRONTEND_URL for redirects.
This commit is contained in:
Alexis
2026-04-28 10:31:37 +02:00
parent 3e59c2caaa
commit 417f290056
3 changed files with 10 additions and 1 deletions
+6
View File
@@ -19,3 +19,9 @@ GOOGLE_REDIRECT_URI=http://localhost:8070/api/auth/google/callback
# Clave para firmar los JWT (usa algo largo y aleatorio en producción) # Clave para firmar los JWT (usa algo largo y aleatorio en producción)
SECRET_KEY=cambia-esta-clave-en-produccion SECRET_KEY=cambia-esta-clave-en-produccion
# URL del frontend a la que se redirige tras el login con Google
# Con docker-compose en local: http://localhost:8071
# Con Vite directo en local: http://localhost:5173
# En producción: https://tu-dominio.com
FRONTEND_URL=http://localhost:5173
+2 -1
View File
@@ -13,6 +13,7 @@ GOOGLE_CLIENT_ID = os.getenv("GOOGLE_CLIENT_ID")
GOOGLE_CLIENT_SECRET = os.getenv("GOOGLE_CLIENT_SECRET") GOOGLE_CLIENT_SECRET = os.getenv("GOOGLE_CLIENT_SECRET")
REDIRECT_URI = os.getenv("GOOGLE_REDIRECT_URI") REDIRECT_URI = os.getenv("GOOGLE_REDIRECT_URI")
SECRET_KEY = os.getenv("SECRET_KEY") SECRET_KEY = os.getenv("SECRET_KEY")
FRONTEND_URL = os.getenv("FRONTEND_URL", "http://localhost:5173")
@router.get("/login") @router.get("/login")
async def google_login(): async def google_login():
@@ -97,4 +98,4 @@ async def google_callback(request: Request):
{"$set": {"token": token}} {"$set": {"token": token}}
) )
return RedirectResponse(f"http://localhost:5173/login?token={token}") return RedirectResponse(f"{FRONTEND_URL}/login?token={token}")
+2
View File
@@ -21,6 +21,8 @@ services:
volumes: volumes:
- ./frontend:/app - ./frontend:/app
- /app/node_modules - /app/node_modules
environment:
- VITE_API_URL=http://localhost:8070/api
depends_on: depends_on:
- backend - backend