11# Database Configuration
2- DATABASE_URL = " postgresql://mailbuddy:mailbuddy@localhost:5432/mailbuddy"
2+ DATABASE_URL = " postgresql://mailbuddy:mailbuddy@localhost:5432/mailbuddy" # THIS URL IS CORRECT IF YOU RUN THE DOCKER COMPOSE (Check readme)
33
44# Google OAuth
55GOOGLE_CLIENT_ID = your-client-id.apps.googleusercontent.com
66GOOGLE_CLIENT_SECRET = your-client-secret
77
88# Encryption
9- ENCRYPTION_KEY = " your-encryption-key"
9+ ENCRYPTION_KEY = " your-encryption-key" # Can leave as is, not necessary to be any strict value
1010
1111# Authentication
12- BETTER_AUTH_SECRET = " your-auth-secret"
13- BETTER_AUTH_URL = " http://localhost:3000"
12+ BETTER_AUTH_SECRET = " your-auth-secret" # Can leave as is, not necessary to be any strict value
13+ BETTER_AUTH_URL = " http://localhost:3000" # Can leave as is, not necessary to be any strict value (only port matters)
1414
1515# Redis
16- REDIS_URL = " redis://localhost:6379"
16+ REDIS_URL = " redis://localhost:6379" # THIS URL IS CORRECT IF YOU RUN THE DOCKER COMPOSE (Check readme)
1717
1818# Upstash Vector
19- UPSTASH_VECTOR_REST_URL = " your-upstash-vector-url"
20- UPSTASH_VECTOR_REST_TOKEN = " your-upstash-vector-token"
19+ UPSTASH_VECTOR_REST_URL = " your-upstash-vector-url" # BEING DEPRECATED, NOT NECESSARY FOR LOCAL DEPLOYMENT
20+ UPSTASH_VECTOR_REST_TOKEN = " your-upstash-vector-token" # BEING DEPRECATED, NOT NECESSARY FOR LOCAL DEPLOYMENT
2121
2222# OpenRouter
2323OPENROUTER_API_KEY = " your-openrouter-api-key" # Create one & use the free models if needed
2424
2525# Resend
26- RESEND_API_KEY = " your-resend-api-key"
27- RESEND_WISHLIST_AUDIENCE_ID = " your-wishlist-audience-id"
26+ RESEND_API_KEY = " your-resend-api-key" # OPTIONAL, YOU DO NOT NEED THIS FOR MOST LOCAL TESTING!
27+ RESEND_WISHLIST_AUDIENCE_ID = " your-wishlist-audience-id" # OPTIONAL, YOU DO NOT NEED THIS FOR MOST LOCAL TESTING!
0 commit comments