- 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>
44 lines
477 B
Plaintext
44 lines
477 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# env files
|
|
.env.local
|
|
.env*.local
|
|
.env.local.backup
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|