vagrant init

This commit is contained in:
2021-06-13 18:27:54 +02:00
parent c628b84aa5
commit a9fd62edd2
26 changed files with 1330 additions and 0 deletions

12
setup/scripts/php.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
echo "INSTALLING PHP"
sudo apt-get update
sudo apt -y install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get -y install php7.4
sudo apt-get -y install php-mysql php-xml
sudo phpenmod pdo_mysql
echo "PHP INSTALLED"