Files
investbrain/docker/entrypoint.sh
T
2024-09-08 21:36:37 -05:00

47 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
cd /var/www/app
if [[ "$OSTYPE" == "darwin"* ]]; then
# macOS
OWNER=$(stat -f '%Su' storage)
else
# Linux
OWNER=$(stat -c '%U' storage)
fi
echo "====================== Running entrypoint script... ====================== "
if [ ! -f ".env" ]; then
echo " > Ope, gotta create an .env file!"
cp .env.example .env
fi
echo "====================== Checking for updates... ====================== "
/usr/bin/git pull
echo "====================== Installing Composer dependencies... ====================== "
/usr/local/bin/composer install
echo "====================== Validating environment... ====================== "
if [ "$OWNER" != "www-data" ]; then
echo " > Setting correct permissions for storage directory..."
chown -R www-data:www-data storage
fi
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
echo " > Ah, APP_KEY is missing in .env file. Generating a new key!"
/usr/local/bin/php artisan key:generate --force
fi
echo "====================== Installing NPM dependencies and building frontend... ====================== "
/usr/bin/npm install
/usr/bin/npm run build
echo "====================== Running migrations... ====================== "
/usr/local/bin/php artisan migrate --force
echo "====================== Spinning up Supervisor daemon... ====================== "
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf