mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
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...
5 lines
122 B
Bash
Executable file
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
|