Oops, database.yml and redis.yml were still included

This commit is contained in:
Robin Ward 2013-02-12 11:25:55 -05:00
parent 47d8a33f04
commit be9c374285
3 changed files with 2 additions and 50 deletions

4
.gitignore vendored
View File

@ -19,8 +19,8 @@ dump.rdb
/cache
/coverage/*
/config/database.yml
/config/redis.yml
config/database.yml
config/redis.yml
# Ignore the default SQLite database and db dumps
/db/*.sqlite3

View File

@ -1,30 +0,0 @@
development:
adapter: postgresql
database: discourse_development
host: localhost
pool: 5
timeout: 5000
host_names:
- "localhost"
# 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: postgresql
database: discourse_test
host: localhost
pool: 5
timeout: 5000
host_names:
- test.localhost
# using the test db, so jenkins can run this config
# we need it to be in production so it minifies assets
production:
adapter: postgresql
database: discourse_development
pool: 5
timeout: 5000
host_names:
- production.localhost

View File

@ -1,18 +0,0 @@
defaults: &defaults
host: localhost
port: 6379
db: 0
cache_db: 2
development:
<<: *defaults
test:
<<: *defaults
db: 1
staging:
<<: *defaults
production:
<<: *defaults