aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/config/database.yml
diff options
context:
space:
mode:
authorJames Gifford <james@jamesrgifford.com>2011-09-12 10:30:45 -0400
committerJames Gifford <james@jamesrgifford.com>2011-09-12 10:30:45 -0400
commitd7154d483269fc25d771d5b8b7b8a2c889e4b3f5 (patch)
tree903afe48e0393578c54b42d050a85f8770e93121 /railties/guides/code/getting_started/config/database.yml
parent4bcacc80667a548664b5ca09d85074c6c383748e (diff)
downloadrails-d7154d483269fc25d771d5b8b7b8a2c889e4b3f5.tar.gz
rails-d7154d483269fc25d771d5b8b7b8a2c889e4b3f5.tar.bz2
rails-d7154d483269fc25d771d5b8b7b8a2c889e4b3f5.zip
Added getting_started code, updated guide with link to rails github repo and path to code
Diffstat (limited to 'railties/guides/code/getting_started/config/database.yml')
-rw-r--r--railties/guides/code/getting_started/config/database.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/railties/guides/code/getting_started/config/database.yml b/railties/guides/code/getting_started/config/database.yml
new file mode 100644
index 0000000000..51a4dd459d
--- /dev/null
+++ b/railties/guides/code/getting_started/config/database.yml
@@ -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