Added new mailer settings to config

ref #151
This commit is contained in:
Nicolai Ort 2021-03-04 16:11:05 +01:00
parent 1551a444ba
commit ddea02db57
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@ export const config = {
seedTestData: getDataSeeding(),
app_url: process.env.APP_URL || "http://localhost:8080",
privacy_url: process.env.PRIVACY_URL || "/privacy",
imprint_url: process.env.IMPRINT_URL || "/imprint"
imprint_url: process.env.IMPRINT_URL || "/imprint",
mailer_url: process.env.MAILER_URL || "http://localhost:8080/mailer",
mailer_key: process.env.MAILER_KEY || "pleasesetme"
}
let errors = 0
if (typeof config.internal_port !== "number") {