eliteregistry/post_deploy.sh
Matt Burchett 094808a98f
All checks were successful
continuous-integration/drone/push Build is passing
Changing post_deploy
2021-04-06 23:52:03 -07:00

33 lines
704 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
php artisan migrate
# start the application
php-fpm -D && nginx -g "daemon off;"