21 lines
583 B
Plaintext
21 lines
583 B
Plaintext
# PostgreSQL connection string
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/gruperly?schema=public"
|
|
|
|
# Frontend origin (CORS + CSRF)
|
|
WEB_URL="http://localhost:6173"
|
|
|
|
# Better Auth
|
|
BETTER_AUTH_SECRET="replace-with-a-strong-secret"
|
|
BETTER_AUTH_URL="http://localhost:4000"
|
|
|
|
# Social providers
|
|
GOOGLE_CLIENT_ID=""
|
|
GOOGLE_CLIENT_SECRET=""
|
|
|
|
# Email (SMTP por ahora; migrar a un proveedor transaccional en el futuro)
|
|
EMAIL_PROVIDER="smtp"
|
|
EMAIL_SERVER_HOST=""
|
|
EMAIL_SERVER_PORT="587"
|
|
EMAIL_SERVER_USER=""
|
|
EMAIL_SERVER_PASSWORD=""
|
|
EMAIL_FROM="Gruperly <no-reply@gruperly.com>" |