-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update Chatwoot API key constant
- Loading branch information
1 parent
586b63f
commit 9556969
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ export const ACTIVE_PROJECT_COOKIE_NAME = 'auth-active-project'; | |
export const RECAPTCHA_SITE_KEY = getNextPublicEnv('NEXT_PUBLIC_CAPTCHA_SITE_KEY'); | ||
export const RECAPTCHA_SECRET_KEY = process.env.CAPTCHA_SECRET_KEY; | ||
|
||
// Gauzy Server URL | ||
export const GAUZY_API_SERVER_URL = process.env.GAUZY_API_SERVER_URL || 'https://api.gauzy.co/api'; | ||
export const GAUZY_API_BASE_SERVER_URL = getNextPublicEnv('NEXT_PUBLIC_GAUZY_API_SERVER_URL', 'https://api.gauzy.co'); | ||
|
||
|
@@ -42,6 +43,9 @@ export const VERIFY_EMAIL_CALLBACK_URL = process.env.VERIFY_EMAIL_CALLBACK_URL | | |
export const VERIFY_EMAIL_CALLBACK_PATH = '/verify-email'; | ||
export const GA_MEASUREMENT_ID = getNextPublicEnv('NEXT_PUBLIC_GA_MEASUREMENT_ID'); | ||
|
||
// Chatwoot | ||
export const CHATWOOT_API_KEY = getNextPublicEnv('NEXT_PUBLIC_CHATWOOT_API_KEY'); | ||
|
||
export const SMTP_FROM_ADDRESS = process.env.SMTP_FROM_ADDRESS || '[email protected]'; | ||
export const SMTP_HOST = process.env.SMTP_HOST || ''; | ||
export const SMTP_PORT = process.env.SMTP_PORT || ''; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters