mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
* added date-picker * added state and handlers for closeOnDate * closeDate -> closeOnDate * added endpoint for CRON to close surveys * resolved migrations * fixed datetime format * removed warnings * PR review changes * resolved merge conflicts and package update * add github workflow for cron * change migration order * change migration order * add zod types for closeOnDate --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
109 lines
3.1 KiB
Plaintext
109 lines
3.1 KiB
Plaintext
########################################################################
|
|
# ------------ MANDATORY (CHANGE ACCORDING TO YOUR SETUP) ------------#
|
|
########################################################################
|
|
|
|
|
|
############
|
|
# BASICS #
|
|
############
|
|
|
|
NEXT_PUBLIC_WEBAPP_URL=http://localhost:3000
|
|
|
|
##############
|
|
# DATABASE #
|
|
##############
|
|
|
|
DATABASE_URL='postgresql://postgres:postgres@localhost:5432/formbricks?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=
|
|
|
|
###############
|
|
# NEXT AUTH #
|
|
###############
|
|
|
|
# @see: https://next-auth.js.org/configuration/options#nextauth_secret
|
|
# You can use: `openssl rand -base64 32` to generate one
|
|
NEXTAUTH_SECRET=RANDOM_STRING
|
|
|
|
# Set this to your public-facing URL, e.g., https://example.com
|
|
# You do not need the NEXTAUTH_URL environment variable in Vercel.
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# If you encounter NEXT_AUTH URL problems this should always be localhost:3000 (or whatever port your app is running on)
|
|
# NEXTAUTH_URL_INTERNAL=http://localhost:3000
|
|
|
|
################
|
|
# 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
|
|
# Enable SMTP_SECURE_ENABLED for TLS (port 465)
|
|
SMTP_SECURE_ENABLED=0
|
|
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
|
|
|
|
# Team Invite. Disable the ability for invited users to create an account.
|
|
# NEXT_PUBLIC_INVITE_DISABLED=1
|
|
|
|
##########
|
|
# Other #
|
|
##########
|
|
|
|
# Display privacy policy, imprint and terms of service links in the footer of signup & public pages.
|
|
NEXT_PUBLIC_PRIVACY_URL=
|
|
NEXT_PUBLIC_TERMS_URL=
|
|
NEXT_PUBLIC_IMPRINT_URL=
|
|
|
|
# Configure Github Login
|
|
NEXT_PUBLIC_GITHUB_AUTH_ENABLED=0
|
|
GITHUB_ID=
|
|
GITHUB_SECRET=
|
|
|
|
# Configure Google Login
|
|
NEXT_PUBLIC_GOOGLE_AUTH_ENABLED=0
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
|
|
# Stripe Billing Variables
|
|
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_WEBHOOK_SECRET=
|
|
|
|
# Configure Formbricks usage within Formbricks
|
|
NEXT_PUBLIC_FORMBRICKS_API_HOST=
|
|
NEXT_PUBLIC_FORMBRICKS_ENVIRONMENT_ID=
|
|
NEXT_PUBLIC_FORMBRICKS_ONBOARDING_SURVEY_ID=
|
|
|
|
# Cron Secret
|
|
CRON_SECRET=
|