From 9d8cb88b52126d46e847f78b1a6f0aaa64f7bd24 Mon Sep 17 00:00:00 2001 From: mattronix Date: Thu, 2 Nov 2023 16:28:37 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6dfb67..56ebd2f 100644 --- a/README.md +++ b/README.md @@ -70,16 +70,26 @@ The Laravel framework is open-sourced software licensed under the [MIT license]( ## Debian 11 ``` + +### Pre Reqs + +#### Install Composer +* https://www.digitalocean.com/community/tutorials/how-to-install-composer-on-debian-11-quickstart + +### Install Commands sudo apt update -apt-get install apache2 +apt-get install apache2 curl git unzip -y sudo apt install lsb-release apt-transport-https ca-certificates software-properties-common -y sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg sudo sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' sudo apt update sudo apt install php8.2 -y php -v -sudo apt install apache2 libapache2-mod-php8.2 +sudo apt install apache2 libapache2-mod-php8.2, php8.2-mbstring sudo systemctl restart apache2 +cd /var/www/html/ +git clone git@code.techinc.nl:techinc/printer-manager-admin.git printer-manager-admin +cd printer-manager-admin ```