diff --git a/app/startup.sh b/app/startup.sh new file mode 100644 index 0000000..c3e5166 --- /dev/null +++ b/app/startup.sh @@ -0,0 +1,9 @@ +#! /usr/bin/env bash +FILE=/app/app/config/app.db +if test -f "$FILE"; +then + echo "$FILE exists." +else + python3 setup.py + echo "ran setup" +fi