mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-23 07:18:57 -06:00
* NEW: Added forgot password ability * FIX: Added password reset disabled flag & jwt verify Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
32 lines
1008 B
Plaintext
32 lines
1008 B
Plaintext
# ------------ MANDATORY (CHANGE ACCORDING TO YOUR SETUP) ------------
|
|
|
|
NEXTAUTH_SECRET=RANDOM_STRING
|
|
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
DATABASE_URL='postgresql://user@localhost:5432/snoopforms?schema=public'
|
|
# For Docker Compose Setup use this Database URL:
|
|
# DATABASE_URL='postgresql://postgres:postgres@postgres:5432/snoopforms?schema=public'
|
|
|
|
# Email Verification. If you enable Email Verification you have to setup SMTP-Settings, too.
|
|
EMAIL_VERIFICATION_DISABLED=1
|
|
|
|
# Password Reset. If you enable Password Reset functionality you have to setup SMTP-Settings, too.
|
|
PASSWORD_RESET_DISABLED=1
|
|
|
|
NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# ------------ OPTIONAL ------------
|
|
|
|
## MAIL SETUP
|
|
|
|
# MAIL_FROM=noreply@example.com
|
|
# SMTP_HOST=smtp.example.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=smtpUser
|
|
# SMTP_PASSWORD=smtpPassword
|
|
|
|
# TERMS_URL=https://www.example.com/terms
|
|
# PRIVACY_URL=https://www.example.com/privacy
|
|
# PUBLIC_IMPRINT_URL=https://www.example.com/imprint
|
|
# PUBLIC_PRIVACY_URL=https://www.example.com/enduserPrivacy |