diff --git a/Procfile b/Procfile index 3c56155..9aebfa3 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: meditations serve --migrate --port $PORT --message \"This is a demo meditations deployment, wiped every hour on the hour.\" +web: ./dokku_run_meditations.sh diff --git a/dokku_run_meditations.sh b/dokku_run_meditations.sh new file mode 100755 index 0000000..c1c90d9 --- /dev/null +++ b/dokku_run_meditations.sh @@ -0,0 +1,2 @@ +#!/bin/bash +./bin/meditations serve --migrate --port $PORT --message "This is a demo meditations deployment, wiped every hour on the hour."