Vote #81878
未完了Load and use bash/system ENV variables in config YML files
0%
説明
In some scenarios, where Redmine is automatically deployed,
it would be of good use to read EXPORT or ENV variables and use them in config .yml files like database.yml
For example like elsastic
https://www.elastic.co/guide/en/beats/winlogbeat/current/using-environ-vars.html
export DB-NAME = "something"
and in yml file
production: database: ${DB-NAME}
journals
I am referring to setup, with rake task.
--------------------------------------------------------------------------------
There are some hacks like this:
https://stackoverflow.com/questions/15045369/redmine-email-configuration-with-environment-variables
But it would be better to be officially supported.
--------------------------------------------------------------------------------
You can use ERB tags in your @database.yml@, for example:
<pre>
production:
database: "<%= ENV["PRODUCTION_DATABASE"] %>"
</pre>
From https://edgeguides.rubyonrails.org/configuring.html#configuring-a-database
> The config/database.yml file can contain ERB tags <%= %>. Anything in the tags will be evaluated as Ruby code. You can use this to pull out data from an environment variable or to perform calculations to generate the needed connection information.
--------------------------------------------------------------------------------
表示するデータがありません