osem-fcy/bin/osem-init.sh
Henne Vogelsang f8b7233404 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...
2018-09-20 11:33:57 -07:00

5 lines
122 B
Bash
Executable file

#!/bin/bash
# Setup the app if it isn't already setup
bundle exec rake db:bootstrap
# Start the app
foreman start -p 3000