9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "==> Running database migrations..."
|
|
/app/bin/migrate
|
|
|
|
echo "==> Starting application..."
|
|
exec /app/bin/server
|
|
|