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:
Emi Matchu 2023-08-03 18:07:27 -07:00
parent 2128f51648
commit 8fb6e82c5e
2 changed files with 9 additions and 1 deletions

1
config/.gitignore vendored
View file

@ -1 +0,0 @@
database.yml

9
config/database.yml Normal file
View 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'] %>