diff --git a/.dokku/postdeploy.sh b/.dokku/postdeploy.sh new file mode 100755 index 0000000..413e38d --- /dev/null +++ b/.dokku/postdeploy.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -eu -o pipefail + +main() { + set -eu + + echo "-----> postdeploy says hi" +} + +main diff --git a/.dokku/predeploy.sh b/.dokku/predeploy.sh new file mode 100755 index 0000000..8915791 --- /dev/null +++ b/.dokku/predeploy.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -eu -o pipefail + +main() { + set -eu + + echo "-----> predeploy says hi" +} + +main