mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
16 lines
345 B
Bash
16 lines
345 B
Bash
#!/bin/bash
|
|
|
|
echo "➜ Set Correct Permissions"
|
|
chmod -R 777 storage
|
|
|
|
echo "➜ Install Composer Dependencies"
|
|
[[ -d vendor ]] || composer install
|
|
|
|
echo "➜ Install NPM Dependencies"
|
|
[[ -d node_modules ]] || npm install
|
|
|
|
echo "➜ Build Project Assets"
|
|
[[ -d assets/vendor ]] || npx gulp compile
|
|
|
|
echo "➜ Listen To Incoming Requests"
|
|
php-fpm
|