Skip to content
Snippets Groups Projects
Commit 94f421c7 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

testing gitlab-ci

parent 368248f4
No related branches found
No related tags found
No related merge requests found
default: &defaults
adapter: postgresql
encoding: unicode
pool: 5
development: &development
<<: *defaults
database: portalmec_dev
username:
password:
test:
<<: *defaults
host: localhost
database: <%= ENV['POSTGRES_DB'] %>
username: <%= ENV['POSTGRES_USER'] %>
password: <%= ENV['POSTGRES_PASSWORD'] %>
production:
<<: *defaults
host: <%= ENV['PORTALMEC_DB_HOST'] %>
database: <%= ENV['PORTALMEC_DB_NAME'] %>
username: <%= ENV['PORTALMEC_DB_USERNAME'] %>
password: <%= ENV['PORTALMEC_DB_PASSWORD'] %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment