-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Enable sending notifications for new project versions or commen…
…ts notifications The `SEND_NOTIFICATIONS` environment variable is now used to control whether notifications should be sent for new project versions or comments notifications. If the variable is set to `true`, notifications will be sent. If it is set to `false`, notifications will be skipped.
- Loading branch information
Showing
4 changed files
with
23 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ APP_URL=http://localhost:4000 # For multiple domains, separate them with comma | |
MONGODB_URL=mongodb://localhost:27017/ac_dev | ||
JWT_SECRET=THisIsMySecretKey! # For production, set to a long random string | ||
PORT=3000 | ||
SEND_NOTIFICATIONS=true | ||
MAILER_FROM="My Org APP <[email protected]>" | ||
MAILER_HOST=sandbox.smtp.mailtrap.io | ||
MAILER_PORT=2525 | ||
|
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
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
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