Put database.yml into the code base

It works by default, we have a mechanism to configure it (dotenv.example)
and we want to be a 12factor app, right? Let's do this...
This commit is contained in:
Henne Vogelsang 2018-09-18 22:58:34 +02:00
parent 1aa1ccbf06
commit af9c028b07
No known key found for this signature in database
GPG key ID: 9D6164C2955FADE0
8 changed files with 22 additions and 55 deletions

View file

@ -19,7 +19,7 @@ echo -e "\ninstalling your bundle...\n"
su - vagrant -c "cd /vagrant/; bundle install --quiet"
echo -e "\nConfiguring the app...\n"
su - vagrant -c "cd /vagrant/; bundle exec rake setup:bootstrap"
su - vagrant -c "cd /vagrant/; bundle exec rake db:bootstrap"
echo -e "\nProvisioning of your OSEM rails app done!"
echo -e "To start your development OSEM run: vagrant exec bundle exec rails server -b 0.0.0.0\n"