- Update SMTP_PASS with Gmail App Password in all environment files - Add TLS configuration to ignore self-signed certificate errors - Fix email sending functionality for contact form 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
791 B
Plaintext
30 lines
791 B
Plaintext
# Environnement DEV
|
|
NODE_ENV=development
|
|
DB_HOST=51.75.24.29
|
|
DB_PORT=5433
|
|
DB_USER=postgres
|
|
DB_PASS=postgres
|
|
DB_NAME=thetiptop_dev
|
|
PORT=4000
|
|
|
|
# URLs Frontend/Backend
|
|
FRONTEND_URL=https://dev.dsp5-archi-o24a-15m-g3.fr
|
|
BACKEND_URL=https://api.dev.dsp5-archi-o24a-15m-g3.fr
|
|
|
|
# JWT
|
|
JWT_SECRET=thetiptopsecret_dev
|
|
SESSION_SECRET=thetiptopsessionsecret_dev
|
|
|
|
# OAuth (à configurer avec les URLs de dev)
|
|
GOOGLE_CLIENT_ID=546665126481-itnlvt22hjn6t0bbgua0aj55h6dpplsk.apps.googleusercontent.com
|
|
GOOGLE_CLIENT_SECRET=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
|
|
FACEBOOK_APP_ID=836681122652445
|
|
FACEBOOK_APP_SECRET=e6889f4339d140c218f1df177149893f
|
|
|
|
# Email Configuration (SMTP)
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=thetiptopgr3@gmail.com
|
|
SMTP_PASS=xydqvyrxcwwsiups
|
|
EMAIL_FROM=thetiptopgr3@gmail.com
|