Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/database.yml.env')
-rw-r--r--config/database.yml.env17
1 files changed, 0 insertions, 17 deletions
diff --git a/config/database.yml.env b/config/database.yml.env
deleted file mode 100644
index 1e35651c9a6..00000000000
--- a/config/database.yml.env
+++ /dev/null
@@ -1,17 +0,0 @@
-<%= ENV['RAILS_ENV'] %>:
- ## Connection information
- # Please be aware that the DATABASE_URL environment variable will take
- # precedence over the following 6 parameters. For more information, see
- # doc/administration/environment_variables.md
- adapter: <%= ENV['GITLAB_DATABASE_ADAPTER'] || 'postgresql' %>
- database: <%= ENV['GITLAB_DATABASE_DATABASE'] || "gitlab_#{ENV['RAILS_ENV']}" %>
- username: <%= ENV['GITLAB_DATABASE_USERNAME'] || 'root' %>
- password: <%= ENV['GITLAB_DATABASE_PASSWORD'] || '' %>
- host: <%= ENV['GITLAB_DATABASE_HOST'] || 'localhost' %>
- port: <%= ENV['GITLAB_DATABASE_PORT'] || '5432' %>
-
- ## Behavior information
- # The following parameters will be used even if you're using the DATABASE_URL
- # environment variable.
- encoding: <%= ENV['GITLAB_DATABASE_ENCODING'] || 'unicode' %>
- pool: <%= ENV['GITLAB_DATABASE_POOL'] || '10' %>