29 lines
964 B
Plaintext
29 lines
964 B
Plaintext
DATABASE_URL=postgresql://recipes_user:Aa123456@localhost:5432/recipes_db
|
|
DB_PASSWORD=Aa123456
|
|
DB_USER=recipes_user
|
|
DB_NAME=recipes_db
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Email Configuration
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=dvirlabs@gmail.com
|
|
SMTP_PASSWORD=agaanrhbbazbdytv
|
|
SMTP_FROM=dvirlabs@gmail.com
|
|
|
|
# Secret Key for sessions (OAuth state token)
|
|
SECRET_KEY=your-super-secret-key-min-32-chars-dev-only-change-in-prod
|
|
|
|
# Google OAuth (LOCAL - localhost redirect)
|
|
GOOGLE_CLIENT_ID=143092846986-hsi59m0on2c9rb5qrdoejfceieao2ioc.apps.googleusercontent.com
|
|
GOOGLE_CLIENT_SECRET=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
|
|
GOOGLE_REDIRECT_URI=http://localhost:8000/auth/google/callback
|
|
FRONTEND_URL=http://localhost:5174
|
|
|
|
# Microsoft Entra ID (Azure AD) OAuth
|
|
AZURE_CLIENT_ID=db244cf5-eb11-4738-a2ea-5b0716c9ec0a
|
|
AZURE_CLIENT_SECRET=Zad8Q~qRBxaQq8up0lLXAq4pHzrVM2JFGFJhHaDp
|
|
AZURE_TENANT_ID=consumers
|
|
AZURE_REDIRECT_URI=http://localhost:8000/auth/azure/callback
|