2023-01-21 14:41:05 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-07-26 13:40:24 +03:00
|
|
|
echo "➜ Set correct permissions"
|
|
|
|
chmod -R 777 storage
|
|
|
|
|
2023-01-21 14:41:05 +03:00
|
|
|
echo "➜ Install Composer Dependencies"
|
|
|
|
composer install
|
|
|
|
|
|
|
|
echo "➜ Install NPM Dependencies"
|
|
|
|
npm install
|
|
|
|
|
|
|
|
echo "➜ Build Project Assets"
|
2023-06-30 10:41:28 +03:00
|
|
|
npx gulp compile
|
2023-01-21 14:41:05 +03:00
|
|
|
|
|
|
|
echo "➜ Listen To Incoming Requests"
|
|
|
|
php-fpm
|