-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add support for custom email templates
- Loading branch information
Showing
5 changed files
with
75 additions
and
10 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
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 |
---|---|---|
|
@@ -75,7 +75,12 @@ SMTP_SENDER=Goodtok Info <[email protected]> | |
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres | ||
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/goodtok | ||
CLOAK_ENCRYPTION_KEY=k1.aesgcm256.MmPSvzCG9fk654bAbl30tsqq4h9d3N4F11hlue8bGAY= | ||
CLOAK_ENCRYPTION_KEY=k1.aesgcm256.MmPSvzCG9fk654bAbl30tsqq4h9d3N4F11hlue8bGAY= | ||
|
||
# Uncomment to enable custom email templates | ||
# See api/src/notifications/templates for available templates | ||
# If not set, the default templates will be used | ||
# EMAIL_TEMPLATES_DIR=/path/to/email/templates | ||
``` | ||
|
||
Finally, run the following command to start the application: | ||
|
@@ -120,6 +125,7 @@ A customer token is a [JSON Web Token](https://jwt.io/) with necessay claims to | |
"calendarUrl": "https://cal.com/placeholder", | ||
"signalingHost": "peerjs.goodtok.io", | ||
"signalingPort": 443, | ||
"iceServers": { ... } | ||
"metadata": { | ||
"name": "Peter", | ||
"email": "[email protected]", | ||
|
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