cleanup
This commit is contained in:
+3
-14
@@ -2,14 +2,6 @@
|
||||
|
||||
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!"
|
||||
@@ -24,9 +16,9 @@ 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
|
||||
if [ $(stat -c '%U' .) != "www-data" ]; then
|
||||
echo " > Setting correct permissions for pwd..."
|
||||
chown -R www-data:www-data .
|
||||
fi
|
||||
|
||||
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
|
||||
@@ -42,8 +34,5 @@ echo "====================== Installing NPM dependencies and building frontend..
|
||||
echo "====================== Running migrations... ====================== "
|
||||
/usr/local/bin/php artisan migrate --force
|
||||
|
||||
echo "====================== Running seeders... ====================== "
|
||||
/usr/local/bin/php artisan seed:market-data
|
||||
|
||||
echo "====================== Spinning up Supervisor daemon... ====================== "
|
||||
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|
||||
|
||||
Reference in New Issue
Block a user