diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:39:57 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:39:57 -0400 |
commit | 79d9cd3c5e3764db9d3506e1702042a7a7a4aea3 (patch) | |
tree | 3a83e1e9f4b307199b95de86a28f58eb0f40ae04 /config/database.yml | |
parent | 9cf94eec5ae98f750f9babc0c37373df87e3981c (diff) | |
download | thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.gz thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.bz2 thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.zip |
Set up Capistrano
Diffstat (limited to 'config/database.yml')
-rw-r--r-- | config/database.yml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/config/database.yml b/config/database.yml deleted file mode 100644 index 0d02f24..0000000 --- a/config/database.yml +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | # SQLite version 3.x | ||
2 | # gem install sqlite3 | ||
3 | # | ||
4 | # Ensure the SQLite 3 gem is defined in your Gemfile | ||
5 | # gem 'sqlite3' | ||
6 | # | ||
7 | default: &default | ||
8 | adapter: sqlite3 | ||
9 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> | ||
10 | timeout: 5000 | ||
11 | |||
12 | development: | ||
13 | <<: *default | ||
14 | database: db/development.sqlite3 | ||
15 | |||
16 | # Warning: The database defined as "test" will be erased and | ||
17 | # re-generated from your development database when you run "rake". | ||
18 | # Do not set this db to the same as development or production. | ||
19 | test: | ||
20 | <<: *default | ||
21 | database: db/test.sqlite3 | ||
22 | |||
23 | production: | ||
24 | <<: *default | ||
25 | database: db/production.sqlite3 | ||