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
+2 -2
View File
@@ -12,7 +12,7 @@ services:
expose:
- "9000"
volumes:
- .:/var/www/app
- .:/var/www/app:delegated
depends_on:
- mysql
networks:
@@ -26,7 +26,7 @@ services:
- "${APP_PORT:-8000}:80"
volumes:
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
- .:/var/www/app
- .:/var/www/app:delegated
depends_on:
- app
networks:
+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