diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-07 21:23:09 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-07 21:23:09 +0200 |
commit | 04e9022e5a56c1d4948a307c055dd74215174ccf (patch) | |
tree | 4cae837cd7073e0c1131ac82a37768f4642e1214 | |
parent | 55e72f4cdfc387dbfc472387bed38bae7e75828a (diff) | |
download | gitlab-ce-04e9022e5a56c1d4948a307c055dd74215174ccf.tar.gz |
sqlite config example
-rw-r--r-- | config/database.yml.sqlite | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config/database.yml.sqlite b/config/database.yml.sqlite new file mode 100644 index 00000000000..51a4dd459dc --- /dev/null +++ b/config/database.yml.sqlite @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +development: + adapter: sqlite3 + database: db/development.sqlite3 + pool: 5 + timeout: 5000 + +# 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: + adapter: sqlite3 + database: db/test.sqlite3 + pool: 5 + timeout: 5000 + +production: + adapter: sqlite3 + database: db/production.sqlite3 + pool: 5 + timeout: 5000 |