Project

General

Profile

Actions

Feature #36852

open

Load and use bash/system ENV variables in config YML files

Added by Aleksandar Pavic almost 2 years ago. Updated almost 2 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:

Description

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}

Actions #1

Updated by Aleksandar Pavic almost 2 years ago

I am referring to setup, with rake task.

Actions #2

Updated by Aleksandar Pavic almost 2 years ago

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.

Actions #3

Updated by Thomas Löber almost 2 years ago

You can use ERB tags in your database.yml, for example:

production:
  database: "<%= ENV["PRODUCTION_DATABASE"] %>" 

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.

Actions

Also available in: Atom PDF