Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
added radiant-style database example ymls for each server
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Grusden committed Jan 15, 2009
1 parent cfe53a4 commit 58a0bb6
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 0 deletions.
25 changes: 25 additions & 0 deletions config/database.mysql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# This is only an example configuration. Please see the Rails
# documentation for more details.
#

development:
adapter: mysql
database: ansuz_development
username: root
password:
socket: /tmp/mysql.sock

test:
adapter: mysql
database: ansuz_test
username: root
password:
socket: /tmp/mysql.sock

production:
adapter: mysql
database: ansuz_production
username: root
password:
socket: /tmp/mysql.sock
25 changes: 25 additions & 0 deletions config/database.postgresql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# This is only an example configuration. Please see the Rails
# documentation for more details.
#

development:
adapter: postgresql
database: ansuz_development
username: root
password:
host: localhost

test:
adapter: postgresql
database: ansuz_test
username: root
password:
host: localhost

production:
adapter: postgresql
database: ansuz_production
username: root
password:
host: localhost
16 changes: 16 additions & 0 deletions config/database.sqlite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# This is only an example configuration. Please see the Rails
# documentation for more details.
#

development:
adapter: sqlite3
database: db/ansuz_development.db

test:
adapter: sqlite3
database: db/ansuz_test.db

production:
adapter: sqlite3
database: db/ansuz_production.db
20 changes: 20 additions & 0 deletions config/database.sqlserver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
development:
adapter: sqlserver
database: ansuz_development
username:
password:
host:

test:
adapter: sqlserver
database: ansuz_test
username:
password:
host:

production:
adapter: sqlserver
database: ansuz_production
username:
password:
host:

0 comments on commit 58a0bb6

Please sign in to comment.