diff options
author | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-12-05 17:38:54 +0100 |
---|---|---|
committer | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-12-05 17:38:54 +0100 |
commit | d1e31bfce96e4d385c1441c43f7d5ec3552731fe (patch) | |
tree | 943b0a351754ef9ee879bb3dfd03be5dea957033 /config | |
parent | 4c3cdfa4fffb221d797e35913361bedbe1060d44 (diff) | |
download | gitlab-ce-d1e31bfce96e4d385c1441c43f7d5ec3552731fe.tar.gz |
Remove generic database.yml.example
Diffstat (limited to 'config')
-rw-r--r-- | config/database.yml.example | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/config/database.yml.example b/config/database.yml.example deleted file mode 100644 index c5a2b8d605b..00000000000 --- a/config/database.yml.example +++ /dev/null @@ -1,39 +0,0 @@ -# -# PRODUCTION -# -production: - adapter: mysql2 - encoding: utf8 - reconnect: false - database: gitlabhq_production - pool: 5 - username: root - password: "secure password" - # host: localhost - # socket: /tmp/mysql.sock - -# -# Development specific -# -development: - adapter: mysql2 - encoding: utf8 - reconnect: false - database: gitlabhq_development - pool: 5 - username: root - password: "secure password" - # socket: /tmp/mysql.sock - -# Warning: The database defined as "test" will be erased and -# re-generated from your development database when you run "rake". -# Do not set this db to the same as development or production. -test: &test - adapter: mysql2 - encoding: utf8 - reconnect: false - database: gitlabhq_test - pool: 5 - username: root - password: "secure password" - # socket: /tmp/mysql.sock |