make sure app_key is issued

This commit is contained in:
hackerESQ
2024-09-05 21:49:06 -05:00
parent acb2866eb1
commit 9a99686db1
2 changed files with 10 additions and 10 deletions
+8 -8
View File
@@ -3,26 +3,26 @@
cd /var/www/app
echo "====================== Running entrypoint script... ====================== "
if [ ! -f ".env" ]; then
echo " > Ope, gotta create an .env file!"
cp .env.example .env
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
fi
echo "====================== Checking for updates... ====================== "
/usr/bin/git pull
echo "====================== Installing Composer dependencies... ====================== "
/usr/local/bin/composer install
echo "====================== Install NPM dependencies and build frontend... ====================== "
echo "====================== Validating environment... ====================== "
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