2022-05-04 22:10:51 +00:00
|
|
|
# ********** INDEX **********
|
|
|
|
#
|
|
|
|
# - APP STORE
|
|
|
|
# - DAILY.CO VIDEO
|
|
|
|
# - GOOGLE CALENDAR/MEET/LOGIN
|
|
|
|
# - HUBSPOT
|
|
|
|
# - OFFICE 365
|
|
|
|
# - SLACK
|
|
|
|
# - STRIPE
|
|
|
|
# - TANDEM
|
|
|
|
# - ZOOM
|
|
|
|
# - GIPHY
|
|
|
|
# - VITAL
|
2022-11-22 20:44:08 +00:00
|
|
|
# - ZAPIER
|
|
|
|
# - LARK
|
|
|
|
# - WEB3
|
2022-11-22 23:10:31 +00:00
|
|
|
# - SALESFORCE
|
2023-03-15 07:50:03 +00:00
|
|
|
# - ZOHOCRM
|
2022-05-04 22:10:51 +00:00
|
|
|
|
|
|
|
# - APP STORE **********************************************************************************************
|
|
|
|
# ⚠️ ⚠️ ⚠️ THESE WILL BE MIGRATED TO THE DATABASE TO PREVENT AWS's 4KB ENV QUOTA ⚠️ ⚠️ ⚠️
|
|
|
|
# - DAILY.CO VIDEO
|
2023-03-21 18:18:06 +00:00
|
|
|
# Enables Cal Video. to get your key
|
|
|
|
# 1. Visit our [Daily.co Partnership Form](https://go.cal.com/daily) and enter your information
|
|
|
|
# 2. From within your dashboard, go to the [developers](https://dashboard.daily.co/developers) tab.
|
|
|
|
# @see https://github.com/calcom/cal.com#obtaining-daily-api-credentials
|
|
|
|
|
2022-05-04 22:10:51 +00:00
|
|
|
DAILY_API_KEY=
|
|
|
|
DAILY_SCALE_PLAN=''
|
|
|
|
|
|
|
|
# - GOOGLE CALENDAR/MEET/LOGIN
|
|
|
|
# Needed to enable Google Calendar integration and Login with Google
|
2023-03-21 18:18:06 +00:00
|
|
|
# @see https://github.com/calcom/cal.com#obtaining-the-google-api-credentials
|
2022-06-29 22:56:31 +00:00
|
|
|
GOOGLE_API_CREDENTIALS=
|
|
|
|
|
2022-05-04 22:10:51 +00:00
|
|
|
# To enable Login with Google you need to:
|
|
|
|
# 1. Set `GOOGLE_API_CREDENTIALS` above
|
|
|
|
# 2. Set `GOOGLE_LOGIN_ENABLED` to `true`
|
|
|
|
# When self-hosting please ensure you configure the Google integration as an Internal app so no one else can login to your instance
|
|
|
|
# @see https://support.google.com/cloud/answer/6158849#public-and-internal&zippy=%2Cpublic-and-internal-applications
|
|
|
|
GOOGLE_LOGIN_ENABLED=false
|
|
|
|
|
|
|
|
# - HUBSPOT
|
|
|
|
# Used for the HubSpot integration
|
|
|
|
# @see https://github.com/calcom/cal.com/#obtaining-hubspot-client-id-and-secret
|
|
|
|
HUBSPOT_CLIENT_ID=""
|
|
|
|
HUBSPOT_CLIENT_SECRET=""
|
|
|
|
|
|
|
|
# - OFFICE 365
|
|
|
|
# Used for the Office 365 / Outlook.com Calendar / MS Teams integration
|
|
|
|
# @see https://github.com/calcom/cal.com/#Obtaining-Microsoft-Graph-Client-ID-and-Secret
|
|
|
|
MS_GRAPH_CLIENT_ID=
|
|
|
|
MS_GRAPH_CLIENT_SECRET=
|
|
|
|
|
|
|
|
# - SLACK
|
|
|
|
# @see https://github.com/calcom/cal.com/#obtaining-slack-client-id-and-secret-and-signing-secret
|
|
|
|
SLACK_SIGNING_SECRET=
|
|
|
|
SLACK_CLIENT_ID=
|
|
|
|
SLACK_CLIENT_SECRET=
|
|
|
|
|
|
|
|
# - STRIPE
|
|
|
|
NEXT_PUBLIC_STRIPE_PUBLIC_KEY= # pk_test_...
|
|
|
|
STRIPE_PRIVATE_KEY= # sk_test_...
|
|
|
|
STRIPE_WEBHOOK_SECRET= # whsec_...
|
|
|
|
STRIPE_CLIENT_ID= # ca_...
|
|
|
|
PAYMENT_FEE_FIXED=10 # Take 10 additional cents commission
|
|
|
|
PAYMENT_FEE_PERCENTAGE=0.005 # Take 0.5% commission
|
|
|
|
|
|
|
|
# - TANDEM
|
|
|
|
# Used for the Tandem integration -- contact support@tandem.chat for API access.
|
|
|
|
TANDEM_CLIENT_ID=""
|
|
|
|
TANDEM_CLIENT_SECRET=""
|
|
|
|
TANDEM_BASE_URL="https://tandem.chat"
|
|
|
|
|
|
|
|
# - ZOOM
|
|
|
|
# Used for the Zoom integration
|
|
|
|
# @see https://github.com/calcom/cal.com/#obtaining-zoom-client-id-and-secret
|
|
|
|
ZOOM_CLIENT_ID=
|
|
|
|
ZOOM_CLIENT_SECRET=
|
|
|
|
|
|
|
|
# - GIPHY
|
|
|
|
# Used for the Giphy integration
|
|
|
|
# @see https://support.giphy.com/hc/en-us/articles/360020283431-Request-A-GIPHY-API-Key
|
|
|
|
GIPHY_API_KEY=
|
2022-05-06 17:21:30 +00:00
|
|
|
|
|
|
|
# - VITAL
|
|
|
|
# Used for the vital integration
|
|
|
|
# @see https://github.com/calcom/cal.com/#obtaining-vital-api-keys
|
|
|
|
VITAL_API_KEY=
|
|
|
|
VITAL_WEBHOOK_SECRET=
|
|
|
|
# "sandbox" | "prod" | "production" | "development"
|
|
|
|
VITAL_DEVELOPMENT_MODE="sandbox"
|
|
|
|
# "us" | "eu"
|
|
|
|
VITAL_REGION="us"
|
2022-05-11 04:58:10 +00:00
|
|
|
|
|
|
|
# - ZAPIER
|
|
|
|
# Used for the Zapier integration
|
|
|
|
# @see https://github.com/calcom/cal.com/blob/main/packages/app-store/zapier/README.md
|
|
|
|
ZAPIER_INVITE_LINK=""
|
2022-08-05 17:56:20 +00:00
|
|
|
|
2022-11-22 20:44:08 +00:00
|
|
|
# - LARK
|
2022-08-05 17:56:20 +00:00
|
|
|
# Needed to enable Lark Calendar integration and Login with Lark
|
|
|
|
# @see <https://open.larksuite.com/document/ukTMukTMukTM/ukDNz4SO0MjL5QzM/g>
|
|
|
|
LARK_OPEN_APP_ID=""
|
|
|
|
LARK_OPEN_APP_SECRET=""
|
|
|
|
LARK_OPEN_VERIFICATION_TOKEN=""
|
2022-09-05 21:10:58 +00:00
|
|
|
|
|
|
|
# - WEB3
|
|
|
|
# Used for the Web3 plugin
|
2022-10-09 11:08:47 +00:00
|
|
|
# @see https://github.com/calcom/cal.com/blob/main/packages/app-store/rainbow/README.md
|
2022-09-05 21:10:58 +00:00
|
|
|
ALCHEMY_API_KEY=""
|
|
|
|
INFURA_API_KEY=""
|
2022-11-22 23:10:31 +00:00
|
|
|
|
|
|
|
# - SALESFORCE
|
|
|
|
# Used for the Salesforce (Sales Cloud) app
|
|
|
|
SALESFORCE_CONSUMER_KEY=""
|
|
|
|
SALESFORCE_CONSUMER_SECRET=""
|
2023-03-15 07:50:03 +00:00
|
|
|
|
|
|
|
# - ZOHOCRM
|
|
|
|
# Used for the Zoho CRM integration
|
|
|
|
ZOHOCRM_CLIENT_ID=""
|
|
|
|
ZOHOCRM_CLIENT_SECRET=""
|
|
|
|
|
2022-08-05 17:56:20 +00:00
|
|
|
# *********************************************************************************************************
|