init push - laying out the project
This commit is contained in:
19
portal/config/database.yml
Normal file
19
portal/config/database.yml
Normal file
@ -0,0 +1,19 @@
|
||||
defaults: &defaults
|
||||
encoding: unicode
|
||||
adapter: postgresql
|
||||
pool: <%= ENV['DATABASE_POOL'] %>
|
||||
host: <%= ENV['DB_HOST'] %>
|
||||
database: <%= ENV['DB_NAME'] %>
|
||||
username: <%= ENV['DATABASE_USER'] %>
|
||||
password: <%= ENV['DATABASE_PASSWORD'] %>
|
||||
port: <%= ENV['DB_PORT'] %>
|
||||
|
||||
development:
|
||||
<<: *defaults
|
||||
|
||||
test:
|
||||
<<: *defaults
|
||||
|
||||
production:
|
||||
<<: *defaults
|
||||
|
Reference in New Issue
Block a user