osem-fcy/bin/osem-init.sh
Henne Vogelsang af9c028b07
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-18 23:21:17 +02: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