Vagrant: Do not pull PHP requirements during VM setup

Don't pull the PHP requirements of Friendica with composer during the VM setup.

First coding is done out side of the VM, so should be the management of the
dependencies. Additionally if the _VirtualBox Guest Additions_ versions don't
match on the guest and host systems, writing to the shared directory will not
work, thus running composer will generate error messages during the initial
setup and Friendica wont work.
This commit is contained in:
Tobias Diekershoff 2021-10-01 08:37:19 +02:00
parent 9858f86b21
commit 93bbf27d52
1 changed files with 0 additions and 4 deletions

View File

@ -94,11 +94,7 @@ rm -rf /var/www/
ln -fs /vagrant /var/www
# install deps with composer
echo ">>> Installing php requirements"
apt install unzip
cd /var/www
php bin/composer.phar install
echo ">>> Setup Friendica"