Rename startup.sh to prestart.sh

This commit is contained in:
Sleepingpirates
2020-06-18 02:49:23 -04:00
committed by GitHub
parent f87bccca15
commit 98a190c8a0

9
app/prestart.sh Normal file
View File

@@ -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