Skip to content

Commit

Permalink
database.yml configured for postgresql
Browse files Browse the repository at this point in the history
  • Loading branch information
saddaqayyum57 authored Jun 20, 2016
1 parent e4e18a9 commit 0116b73
Showing 1 changed file with 50 additions and 16 deletions.
66 changes: 50 additions & 16 deletions config/database.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,60 @@
# SQLite version 3.x
# gem install sqlite3
# PostgreSQL. Versions 8.2 and up are supported.
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
# Install the pg driver:
# gem install pg
# On Mac OS X with macports:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000

development:
<<: *default
database: db/development.sqlite3
adapter: postgresql
host: localhost
encoding: unicode
database: d88umbcbrn51sg
pool: 5
username: hewstnldujxzlq
password: wkxEczTwJg9MtauksGrSi7wuqg
template: template0
# Connect on a TCP socket. Omitted by default since the client uses a
# domain socket that doesn't need configuration. Windows does not have
# domain sockets, so uncomment these lines.
#host: localhost
#port: 5432

# Schema search path. The server defaults to $user,public
#schema_search_path: myapp,sharedapp,public

# Minimum log levels, in increasing order:
# debug5, debug4, debug3, debug2, debug1,
# log, notice, warning, error, fatal, and panic
# The server defaults to notice.
#min_messages: warning

# 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:
<<: *default
database: db/test.sqlite3
adapter: postgresql
host: localhost
encoding: unicode
database: nutocracy_test
pool: 5
username: postgres
password: Txdye3sr727uuZrZScEdsDsAKRe9ZN3y
template: template0

production:
<<: *default
adapter: postgresql
database: bitcoinocracy_production
adapter: postgresql
host: localhost
encoding: unicode
database: d88umbcbrn51sg
pool: 5
username: hewstnldujxzlq
password: wkxEczTwJg9MtauksGrSi7wuqg
template: template0

0 comments on commit 0116b73

Please sign in to comment.