You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have environment variables in your .env file that are surrounded by double quotes or start with an export they aren't handled correctly when pushed to deis. For example:
export REDIS_URL="redis://localhost:6379"
ends up as
export REDIS_URL: "redis://localhost:6379"
Where "export REDIS_URL" is the key and the value is still surrounded by double quotes which can then cause things to fail when the config is referenced.
Are env vars containing spaces in their names legal on Heroku? If not, we should tighten the .env file validation rules; if so, we should probably document config:push and config:pull behavior more specifically around this case.
From @deis-admin on January 19, 2017 21:8
From @glenwong on June 4, 2015 23:19
If you have environment variables in your .env file that are surrounded by double quotes or start with an export they aren't handled correctly when pushed to deis. For example:
export REDIS_URL="redis://localhost:6379"
ends up as
export REDIS_URL: "redis://localhost:6379"
Where "export REDIS_URL" is the key and the value is still surrounded by double quotes which can then cause things to fail when the config is referenced.
Copied from original issue: deis/deis#3796
Copied from original issue: deis/workflow-cli#289
The text was updated successfully, but these errors were encountered: