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
{{ message }}
This repository was archived by the owner on Jul 30, 2019. It is now read-only.
We're looking to combine a standard eb.yml file with an application specific config but there's no way to do so in the current code.
Would you be open to changing the config task to look at an ENV variable for the path to the config?
We're thinking about something like this:
config_file=ENV['EB_CONFIG'] || 'eb.yml'# load the configuration from same dir (for standalone CI purposes) or from the rails config dir if within the rails projectfilename=EbConfig.resolve_path(config_file)unlessFile.exists?filenamefilename=EbConfig.resolve_path('config/' + config_file)endEbConfig.load!(environment,filename)
We're looking to combine a standard eb.yml file with an application specific config but there's no way to do so in the current code.
Would you be open to changing the config task to look at an ENV variable for the path to the config?
We're thinking about something like this: