forked from wallabag/wallabag
Merge pull request #1518 from mathbruyen/smtp-from-env
Set SMTP from environment variables
This commit is contained in:
@ -85,6 +85,9 @@
|
|||||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
|
||||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
|
||||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
|
||||||
|
],
|
||||||
|
"build-parameters": [
|
||||||
|
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
@ -92,7 +95,13 @@
|
|||||||
"symfony-web-dir": "web",
|
"symfony-web-dir": "web",
|
||||||
"symfony-assets-install": "relative",
|
"symfony-assets-install": "relative",
|
||||||
"incenteev-parameters": {
|
"incenteev-parameters": {
|
||||||
"file": "app/config/parameters.yml"
|
"file": "app/config/parameters.yml",
|
||||||
|
"env-map": {
|
||||||
|
"mailer_host": "WALLABAG_MAILER_HOST",
|
||||||
|
"mailer_user": "WALLABAG_MAILER_USER",
|
||||||
|
"mailer_password": "WALLABAG_MAILER_PASSWORD",
|
||||||
|
"secret": "WALLABAG_SECRET"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|||||||
Reference in New Issue
Block a user