2024-03-02 00:19:12 +01:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
2024-02-20 13:27:27 +01:00
|
|
|
metadata:
|
|
|
|
name: stackspin-calcom-keys
|
|
|
|
namespace: stackspout
|
2024-03-02 00:19:12 +01:00
|
|
|
stringData:
|
2024-12-25 16:49:20 +01:00
|
|
|
# https://github.com/calcom/cal.com/blob/main/.env.example
|
2024-03-02 00:19:12 +01:00
|
|
|
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
|
|
|
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
2024-09-15 18:35:21 +03:00
|
|
|
#NEXT_PUBLIC_API_V2_URL: "https://${calcom_domain}/api/v2"
|
2024-12-25 20:40:36 +01:00
|
|
|
ALLOWED_HOSTNAMES: '"${calcom_domain}"'
|
2025-02-27 19:40:53 +00:00
|
|
|
CALCOM_TELEMETRY_DISABLED: ${quote}1${quote}
|
2024-12-25 16:49:20 +01:00
|
|
|
SEND_FEEDBACK_EMAIL: "${admin_email}"
|
|
|
|
|
|
|
|
NEXT_PUBLIC_APP_NAME: "Bookings for ${org_name}"
|
|
|
|
NEXT_PUBLIC_SUPPORT_MAIL_ADDRESS: "${admin_email}"
|
|
|
|
NEXT_PUBLIC_COMPANY_NAME: "${org_name}"
|
|
|
|
# Set this to true in to disable new signups
|
2025-02-27 19:40:53 +00:00
|
|
|
NEXT_PUBLIC_DISABLE_SIGNUP: ${quote}1${quote}
|
2024-12-25 16:49:20 +01:00
|
|
|
|
2024-03-02 00:19:12 +01:00
|
|
|
NEXTAUTH_SECRET: "${nextauth_secret}"
|
|
|
|
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
2024-12-25 16:49:20 +01:00
|
|
|
|
2024-04-05 14:41:42 +02:00
|
|
|
EMAIL_FROM: "${outgoing_mail_from_address}"
|
2024-12-25 16:49:20 +01:00
|
|
|
EMAIL_FROM_NAME: "${org_name}"
|
2024-04-05 14:41:42 +02:00
|
|
|
EMAIL_SERVER_HOST: "${outgoing_mail_smtp_host}"
|
2024-09-08 16:46:19 +03:00
|
|
|
EMAIL_SERVER_PORT: ${quote}${outgoing_mail_smtp_port}${quote}
|
2024-04-05 14:41:42 +02:00
|
|
|
EMAIL_SERVER_USER: "${outgoing_mail_smtp_user}"
|
|
|
|
EMAIL_SERVER_PASSWORD: "${outgoing_mail_smtp_password}"
|
|
|
|
# email_enabled: "${outgoing_mail_enabled}"
|
2024-12-25 16:49:20 +01:00
|
|
|
|
|
|
|
# NEXT_PUBLIC_LOGGER_LEVEL=3 sets to log info, warn, error and fatal logs.
|
|
|
|
# [0: silly & upwards, 1: trace & upwards, 2: debug & upwards, 3: info & upwards, 4: warn & upwards, 5: error & fatal, 6: fatal]
|
|
|
|
# NEXT_PUBLIC_LOGGER_LEVEL=2
|