Clone to a project destination in your vhost directory.
git clone https://github.com/Stilmark/WebApp.git [your project]
Run the install script to require dependencies and set up configuration files and directory permissions.
./install.sh
Edit .env file.
multipass launch --cpus 1 --disk 10G --mem 1G --name master \
multipass mount /Users/$USER/www master:/www \
multipass connect master
sudo apt update \
sudo apt -y upgrade \
sudo apt -y install apache2 php libapache2-mod-php php-cli php-mbstring unzip \
sudo systemctl restart apache2
sudo a2enmod rewrite \
sudo service apache2 reload \
sudo service apache2 restart
cd ~ \
curl -sS https://getcomposer.org/installer -o /tmp/composer-setup.php \
sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer