Changing post_deploy
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Matt Burchett 2021-04-06 23:51:12 -07:00
parent b6670a0f6e
commit 307d4b7927

View File

@ -5,19 +5,21 @@ php artisan optimize
# perform DB migrations
if [[ ! -f ./database/database.sqlite ]]; then
if [[ ! -f /data/database.sqlite ]]; then
echo "No database found. Creating."
touch /data/database.sqlite
fi
echo "No link to database. Linking database."
ln -s /data/database.sqlite ./database/database.sqlite
fi
if [[ ! -f ./.env ]]; then
if [[ ! -f /data/database.sqlite ]]; then
echo "No database found. Creating."
touch /data/database.sqlite
fi
if [[ ! -f /data/.env ]]; then
echo "No enviroment found. Creating."
cp .env.example /data/.env
fi
if [[ ! -f ./.env ]]; then
echo "No link to environment. Linking environment."
ln -s /data/.env ./.env
php artisan key:generate