Skip to content

Commit 30673a8

Browse files
committed
bug #687 Add MAILER_URL env var to Heroku config file (javiereguiluz)
This PR was squashed before being merged into the master branch (closes #687). Discussion ---------- Add MAILER_URL env var to Heroku config file This fixes #686. Commits ------- 6ec088e Add MAILER_URL env var to Heroku config file
2 parents cede2cb + 6ec088e commit 30673a8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

app.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@
2222
"APP_DEBUG": {
2323
"value": "0"
2424
},
25-
"SYMFONY_LOG": "php://stderr",
2625
"APP_SECRET": {
2726
"description": "Extra entropy for %kernel.secret%; used for CSRF tokens, cookies and signed URLs.",
2827
"generator": "secret"
29-
}
28+
},
29+
"MAILER_URL": {
30+
"value": "null://localhost",
31+
"description": "A DSN-like configuration string for the mail server. See https://symfony.com/doc/current/reference/configuration/swiftmailer.html#url"
32+
},
33+
"SYMFONY_LOG": "php://stderr"
3034
},
3135
"addons": [
3236
"heroku-postgresql"

0 commit comments

Comments
 (0)