From 92b443fb076c09f6a8bedcca9947b4c7e89c3517 Mon Sep 17 00:00:00 2001 From: Fernando Brito Date: Tue, 3 Jun 2014 08:33:48 -0300 Subject: [PATCH] Create database example file --- config/database.yml.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+), 0 deletions(-) create mode 100644 config/database.yml.example diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 0000000..c1c60d0 --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,19 @@ +# 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 \ No newline at end of file -- libgit2 0.21.2