eliteregistry/post_deploy.sh
Matt Burchett 307d4b7927
Some checks reported errors
continuous-integration/drone/push Build was killed
Changing post_deploy
2021-04-06 23:51:12 -07:00

37 lines
710 B
Bash

#!/usr/bin/env bash
# update application cache
php artisan optimize
# perform DB migrations
if [[ ! -f ./database/database.sqlite ]]; then
echo "No link to database. Linking database."
ln -s /data/database.sqlite ./database/database.sqlite
fi
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
fi
fi
php artisan migrate
# start the application
php-fpm -D && nginx -g "daemon off;"