2021-04-27 14:19:12 +00:00
|
|
|
DATABASE_URL='postgresql://<user>:<pass>@<db-host>:<db-port>/<db-name>'
|
2021-04-21 22:10:48 +00:00
|
|
|
GOOGLE_API_CREDENTIALS='secret'
|
2021-06-09 19:56:49 +00:00
|
|
|
BASE_URL='http://localhost:3000'
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-06-28 17:47:40 +00:00
|
|
|
# @see: https://github.com/calendso/calendso/issues/263
|
|
|
|
# Required for Vercel hosting - set NEXTAUTH_URL to equal your BASE_URL
|
|
|
|
# NEXTAUTH_URL='http://localhost:3000'
|
|
|
|
|
2021-04-27 14:19:12 +00:00
|
|
|
# Remove this var if you don't want Calendso to collect anonymous usage
|
|
|
|
NEXT_PUBLIC_TELEMETRY_KEY=js.2pvs2bbpqq1zxna97wcml.oi2jzirnbj1ev4tc57c5r
|
|
|
|
|
2021-04-21 22:10:48 +00:00
|
|
|
# Used for the Office 365 / Outlook.com Calendar integration
|
|
|
|
MS_GRAPH_CLIENT_ID=
|
2021-05-27 22:10:20 +00:00
|
|
|
MS_GRAPH_CLIENT_SECRET=
|
|
|
|
|
2021-06-10 23:37:58 +00:00
|
|
|
# Used for the Zoom integration
|
|
|
|
ZOOM_CLIENT_ID=
|
|
|
|
ZOOM_CLIENT_SECRET=
|
|
|
|
|
2021-05-27 22:10:20 +00:00
|
|
|
# E-mail settings
|
|
|
|
|
|
|
|
# Calendso uses nodemailer (@see https://nodemailer.com/about/) to provide email sending. As such we are trying to
|
|
|
|
# allow access to the nodemailer transports from the .env file. E-mail templates are accessible within lib/emails/
|
|
|
|
|
|
|
|
# Configures the global From: header whilst sending emails.
|
2021-05-28 11:16:19 +00:00
|
|
|
EMAIL_FROM='notifications@yourselfhostedcalendso.com'
|
2021-05-27 22:10:20 +00:00
|
|
|
|
|
|
|
# Configure SMTP settings (@see https://nodemailer.com/smtp/).
|
|
|
|
# Note: The below configuration for Office 365 has been verified to work.
|
|
|
|
EMAIL_SERVER_HOST='smtp.office365.com'
|
|
|
|
EMAIL_SERVER_PORT=587
|
|
|
|
EMAIL_SERVER_USER='<office365_emailAddress>'
|
|
|
|
# Keep in mind that if you have 2FA enabled, you will need to provision an App Password.
|
|
|
|
EMAIL_SERVER_PASSWORD='<office365_password>'
|