Sha256: 9c607a2bc38b2f03056ecfbc184b1d864acb9a209ce72e2f87a90cb2db379756

Contents?: true

Size: 563 Bytes

Versions: 2

Compression:

Stored size: 563 Bytes

Contents

# Configure the database used when in the development environment
development:
  adapter: postgresql
  encoding: unicode
  database: <%= app_name %>_development
  pool: 5
  username:
  password:

# Configure the database used when in the test environment
test:
  adapter: postgresql
  encoding: unicode
  database: <%= app_name %>_test
  pool: 5
  username:
  password:

# Configure the database used when in the production environment
production:
  adapter: postgresql
  encoding: unicode
  database: <%= app_name %>_production
  pool: 5
  username:
  password:

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sinatra-cli-0.0.2 templates/config/database.yml.erb
sinatra-cli-0.0.1 templates/config/database.yml.erb