mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
14 lines
212 B
Text
14 lines
212 B
Text
|
#!/bin/bash
|
||
|
|
||
|
echo "➜ Install Composer Dependencies"
|
||
|
composer install
|
||
|
|
||
|
echo "➜ Install NPM Dependencies"
|
||
|
npm install
|
||
|
|
||
|
echo "➜ Build Project Assets"
|
||
|
gulp build
|
||
|
|
||
|
echo "➜ Listen To Incoming Requests"
|
||
|
php-fpm
|