2023-03-14 09:23:07 +01:00
# Database
2023-03-17 15:08:06 +01:00
# Option 1: You can use the provided remote test database, courtesy of the documenso team: postgres://documenso_test_user:GnmLG14u12sd9zHsd4vVWwP40WneFJMo@dpg-cf2hljh4reb5o45oqpq0-a.oregon-postgres.render.com/documenso_test_e2i3
# Option 2: Set up a local Postgres SQL instance (RECOMMENDED)
2023-04-08 23:09:57 +10:00
# Option 3: Use the provided dx setup (RECOMMENDED)
2023-04-13 23:43:42 +10:00
# => postgres://documenso:password@127.0.0.1:54320/documenso
2023-04-08 23:09:57 +10:00
#
2023-06-01 10:04:26 +02:00
# ⚠ WARNING: The test database can be reset or taken offline at any point.
# ⚠ WARNING: Please be aware that nothing written to the test database is private.
2023-01-16 12:57:14 +01:00
DATABASE_URL=''
2023-03-14 09:23:07 +01:00
# URL
2023-02-09 12:11:21 +01:00
NEXT_PUBLIC_WEBAPP_URL='http://localhost:3000'
2023-01-16 12:57:14 +01:00
2023-03-14 09:23:07 +01:00
# AUTH
# For more see here: https://next-auth.js.org
2023-02-09 12:11:21 +01:00
NEXTAUTH_SECRET='lorem ipsum sit dolor random string for encryption this could literally be anything'
NEXTAUTH_URL='http://localhost:3000'
2023-05-27 01:07:07 +10:00
# SIGNING
CERT_FILE_PATH=
2023-05-27 01:31:48 +10:00
CERT_PASSPHRASE=
2023-05-28 00:39:07 +10:00
CERT_FILE_ENCODING=
2023-05-27 01:07:07 +10:00
2023-04-04 14:20:36 +02:00
# MAIL (NODEMAILER)
# SENDGRID
2023-03-14 09:23:07 +01:00
# Get a Sendgrid Api key here: https://signup.sendgrid.com
2023-02-09 12:11:21 +01:00
SENDGRID_API_KEY=''
2023-04-04 14:20:36 +02:00
# SMTP
# Set SMTP credentials to use SMTP instead of the Sendgrid API.
2023-04-08 23:09:57 +10:00
# If you're using the dx setup you can use the following values:
#
# SMTP_MAIL_HOST='127.0.0.1'
# SMTP_MAIL_PORT='2500'
# SMTP_MAIL_USER='documenso'
# SMTP_MAIL_PASSWORD='documenso'
2023-04-04 14:20:36 +02:00
SMTP_MAIL_HOST=''
SMTP_MAIL_PORT=''
SMTP_MAIL_USER=''
SMTP_MAIL_PASSWORD=''
2023-03-14 09:23:07 +01:00
# Sender for signing requests and completion mails.
2023-04-04 14:20:36 +02:00
MAIL_FROM='documenso@localhost.com'
2023-03-19 14:59:10 +01:00
2023-05-05 19:29:42 +10:00
# STRIPE
STRIPE_API_KEY=
STRIPE_WEBHOOK_SECRET=
2023-05-06 14:33:42 +10:00
NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID=
NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID=
2023-05-05 19:29:42 +10:00
2023-03-19 14:59:10 +01:00
#FEATURE FLAGS
# Allow users to register via the /signup page. Otherwise they will be redirect to the home page.
2023-05-06 14:34:20 +10:00
NEXT_PUBLIC_ALLOW_SIGNUP=true
2023-06-02 19:03:59 +10:00
NEXT_PUBLIC_ALLOW_SUBSCRIPTIONS=false