Add database.yml to git again
We gitignored it a long time ago as the way to hide our db secrets, but that's not how we manage them anymore! (Or, well, we haven't done production deployment with this new setup yet, but you get the point.) This helps clarify what the database config oughta look like!
This commit is contained in:
parent
3263a926dc
commit
caef1620be
2 changed files with 9 additions and 1 deletions
1
config/.gitignore
vendored
1
config/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
database.yml
|
9
config/database.yml
Normal file
9
config/database.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
development:
|
||||
adapter: mysql2
|
||||
database: openneo_impress
|
||||
username: openneo_impress
|
||||
password: openneo_impress
|
||||
pool: 5
|
||||
|
||||
production:
|
||||
url: <%= ENV['DATABASE_URL_PRIMARY'] %>
|
Loading…
Reference in a new issue