Skip to content

Instantly share code, notes, and snippets.

@danielVargas
Created April 18, 2019 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielVargas/19b0c6a73d64243f2d0f863cc48f338c to your computer and use it in GitHub Desktop.
Save danielVargas/19b0c6a73d64243f2d0f863cc48f338c to your computer and use it in GitHub Desktop.
Archivo de configuración de la base de datos
default: &default
adapter: postgresql
encoding: unicode
username: nombre_de_usuario
password: contraseña
pool: 5
timeout: 5000
development:
<<: *default
host: localhost
database: db/development_capistrano
test:
<<: *default
host: localhost
database: db/test_capistrano
production:
<<: *default
host: localhost
database: production_capistrano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment