mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
### New Formbricks Release: Complete Rewrite, New Features & Enhanced UI 🚀 We're thrilled to announce the release of the new Formbricks, a complete overhaul of our codebase, packed with powerful features and an improved user experience. #### What's New: 1. **Survey Builder**: Design and customize your in-product micro-surveys with our intuitive survey builder. 2. **Trigger Micro-Surveys**: Set up micro-surveys to appear at specific points within your app, allowing you to gather feedback when it matters most. 3. **JavaScript SDK**: Our new JavaScript SDK makes integration a breeze - just embed it once and you're ready to go. 4. **No-Code Events**: Set up events and triggers without writing a single line of code, making it accessible for everyone on your team. 5. **Revamped UI**: Enjoy an entirely new user interface that enhances usability and provides a smooth, delightful experience. This release marks a major step forward for Formbricks, enabling you to better understand your users and build an outstanding product experience. Please update your Formbricks integration to take advantage of these exciting new features, and let us know in the Discord if you have any questions or feedback! Happy surveying! 🎉
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
########################################################################
|
|
# ------------ MANDATORY (CHANGE ACCORDING TO YOUR SETUP) ------------#
|
|
########################################################################
|
|
|
|
|
|
############
|
|
# Basics #
|
|
############
|
|
|
|
NEXTAUTH_SECRET=RANDOM_STRING
|
|
|
|
# Set this to your public-facing URL, e.g., https://example.com
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# This should always be localhost:3000 (or whatever port your app is running on)
|
|
NEXTAUTH_URL_INTERNAL=http://localhost:3000
|
|
|
|
DATABASE_URL='postgresql://postgres:postgres@localhost:5432/postgres?schema=public'
|
|
|
|
# Uncomment to enable a dedicated connection pool for Prisma using Prisma Data Proxy
|
|
# Cold boots will be faster and you'll be able to scale your DB independently of your app.
|
|
# @see https://www.prisma.io/docs/data-platform/data-proxy/use-data-proxy
|
|
# PRISMA_GENERATE_DATAPROXY=true
|
|
PRISMA_GENERATE_DATAPROXY=
|
|
|
|
################
|
|
# Mail Setup #
|
|
################
|
|
|
|
# Necessary if email verification and password reset are enabled.
|
|
# See optional configurations below if you want to disable these features.
|
|
|
|
MAIL_FROM=noreply@example.com
|
|
SMTP_HOST=localhost
|
|
SMTP_PORT=1025
|
|
SMTP_SECURE_ENABLED=0 # Enable for TLS (port 465)
|
|
SMTP_USER=smtpUser
|
|
SMTP_PASSWORD=smtpPassword
|
|
|
|
|
|
########################################################################
|
|
# ------------------------------ OPTIONAL -----------------------------#
|
|
########################################################################
|
|
|
|
# Uncomment the variables you would like to use and customize the values.
|
|
|
|
#####################
|
|
# Disable Features #
|
|
#####################
|
|
|
|
# Email Verification. If you enable Email Verification you have to setup SMTP-Settings, too.
|
|
# NEXT_PUBLIC_EMAIL_VERIFICATION_DISABLED=1
|
|
|
|
# Password Reset. If you enable Password Reset functionality you have to setup SMTP-Settings, too.
|
|
# NEXT_PUBLIC_PASSWORD_RESET_DISABLED=1
|
|
|
|
# Signup. Disable the ability for new users to create an account.
|
|
# NEXT_PUBLIC_SIGNUP_DISABLED=1
|
|
|
|
##########
|
|
# Other #
|
|
##########
|
|
|
|
# Disable Sentry warning
|
|
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
|
|
|
|
# Enable Sentry Error Tracking
|
|
NEXT_PUBLIC_SENTRY_DSN=
|
|
|
|
# Configure Github Login
|
|
NEXT_PUBLIC_GITHUB_AUTH_ENABLED=0
|
|
GITHUB_ID=
|
|
GITHUB_SECRET=
|
|
|
|
# Stripe Billing Variables
|
|
NEXT_PUBLIC_STRIPE_PRICING_TABLE_ID=
|
|
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_WEBHOOK_SECRET= |