mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
12 lines
172 B
Text
12 lines
172 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
# ensure everything in the app is up to date.
|
||
|
script/bootstrap
|
||
|
|
||
|
# boot the app and any other necessary processes.
|
||
|
foreman start
|