- 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>
17 lines
567 B
Plaintext
17 lines
567 B
Plaintext
# Environment: Preproduction
|
|
NODE_ENV=preproduction
|
|
|
|
# API Backend URL (Preproduction)
|
|
NEXT_PUBLIC_API_URL=https://api.preprod.dsp5-archi-o24a-15m-g3.fr/api
|
|
|
|
# Frontend URL (Preproduction)
|
|
NEXT_PUBLIC_FRONTEND_URL=https://preprod.dsp5-archi-o24a-15m-g3.fr
|
|
|
|
# NextAuth Configuration
|
|
NEXTAUTH_URL=https://preprod.dsp5-archi-o24a-15m-g3.fr
|
|
NEXTAUTH_SECRET=4+mQhf1k0Ad7hsl35myygwELsw+/vDYsKtj2ovPdFQ0=
|
|
|
|
# OAuth Configuration
|
|
NEXT_PUBLIC_GOOGLE_CLIENT_ID=546665126481-itnlvt22hjn6t0bbgua0aj55h6dpplsk.apps.googleusercontent.com
|
|
NEXT_PUBLIC_FACEBOOK_APP_ID=836681122652445
|