Add dotenv-rails to Gemfile

pull/10695/head
Dombi Attila 3 years ago committed by Oliver Günther
parent b4f08c7ef9
commit da5e3ebd6a
  1. 1
      Gemfile
  2. 5
      Gemfile.lock
  3. 2
      docs/development/development-environment-osx/README.md
  4. 2
      docs/development/development-environment-ubuntu/README.md
  5. 1
      docs/installation-and-operations/installation/manual/README.md

@ -273,6 +273,7 @@ group :development do
end
group :development, :test do
gem 'dotenv-rails'
# Require factory_bot for usage with openproject plugins testing
gem 'factory_bot', '~> 6.2.0'
# require factory_bot_rails for convenience in core development

@ -412,6 +412,10 @@ GEM
unf (>= 0.0.5, < 1.0.0)
doorkeeper (5.5.4)
railties (>= 5)
dotenv (2.7.6)
dotenv-rails (2.7.6)
dotenv (= 2.7.6)
railties (>= 3.2)
dry-configurable (0.15.0)
concurrent-ruby (~> 1.0)
dry-core (~> 0.6)
@ -1031,6 +1035,7 @@ DEPENDENCIES
delayed_job_active_record (~> 4.1.5)
disposable (~> 0.6.2)
doorkeeper (~> 5.5.0)
dotenv-rails
email_validator (~> 2.2.3)
equivalent-xml (~> 0.6)
escape_utils (~> 1.0)

@ -167,6 +167,8 @@ test:
database: openproject_test
```
To configure the environment variables such as the number of web server threads `OPENPROJECT_WEB_WORKERS`, copy the `.env.example` to `.env` and add the environment variables you want to configure. The variables will be automatically loaded to the application's environment.
## Finish the Installation of OpenProject
Install code dependencies, link plugin modules and export translation files.

@ -218,6 +218,8 @@ test:
database: openproject_test
```
To configure the environment variables such as the number of web server threads `OPENPROJECT_WEB_WORKERS`, copy the `.env.example` to `.env` and add the environment variables you want to configure. The variables will be automatically loaded to the application's environment.
## Finish the Installation of OpenProject
Install code dependencies, link plugin modules and export translation files.

@ -219,6 +219,7 @@ file are sensitive to whitespace. It is pretty easy to write
invalid `yml` files without seeing the error. Validating those files
prevents you from such errors.
To configure the environment variables such as the number of web server threads `OPENPROJECT_WEB_WORKERS`, copy the `.env.example` to `.env` and add the environment variables you want to configure. The variables will be automatically loaded to the application's environment.
## Finish the installation of OpenProject

Loading…
Cancel
Save