the-tip-top-frontend/.env
soufiane 2e7ab1f3c2 feat: add Google and Facebook OAuth configuration
- Add Google OAuth Client ID: 546665126481-itnlvt22hjn6t0bbgua0aj55h6dpplsk.apps.googleusercontent.com
- Add Facebook App ID: 836681122652445
- Configure environment files for dev, preprod, and production
- Update Jenkinsfile to pass NEXT_PUBLIC_* env vars as Docker build args
- Update .gitignore to allow environment-specific files while protecting .env.local

OAuth Configuration:
- Google: Configured for dev.dsp5-archi-o24a-15m-g3.fr, preprod, and production domains
- Facebook: Configured with App ID 836681122652445
- All authorized redirect URIs configured in Google Console
- All domains configured in Facebook App settings

This enables social login functionality across all environments.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 20:26:23 +01:00

17 lines
512 B
Bash

# Environment Configuration - DEV
NODE_ENV=production
# API Backend URL
NEXT_PUBLIC_API_URL=https://api.dev.dsp5-archi-o24a-15m-g3.fr/api
# Frontend URL
NEXT_PUBLIC_FRONTEND_URL=https://dev.dsp5-archi-o24a-15m-g3.fr
# NextAuth Configuration
NEXTAUTH_URL=https://dev.dsp5-archi-o24a-15m-g3.fr
NEXTAUTH_SECRET=dev-secret-key-change-in-production
# OAuth Providers
NEXT_PUBLIC_GOOGLE_CLIENT_ID=546665126481-itnlvt22hjn6t0bbgua0aj55h6dpplsk.apps.googleusercontent.com
NEXT_PUBLIC_FACEBOOK_APP_ID=836681122652445