Skip to content

Instantly share code, notes, and snippets.

@pushpak1300
Last active January 1, 2020 07:06
Show Gist options
  • Save pushpak1300/e97a36c60a7a04ed61fccd337a2eedc4 to your computer and use it in GitHub Desktop.
Save pushpak1300/e97a36c60a7a04ed61fccd337a2eedc4 to your computer and use it in GitHub Desktop.
sudo apt-get update -y
sudo apt-get install nginx -y
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:ondrej/php -y
sudo apt-get update -y
sudo apt-get install php7.3 php7.3-xml php7.3-gd php7.3-opcache php7.3-mbstring php7.3-curl php7.3-mysql php7.3-intl -y
sudo apt-get purge apache2 apache2-utils apache2-bin apache2.2-common -y
sudo apt-get install mysql-server -y
sudo mkdir /var/www/laravel
sudo apt-get install unzip zip composer -y
cd /var/www/laravel
sudo chmod -R 777 .
git clone https://github.com/pushpak1300/parLOGUE.git .
sudo chown ubuntu:ubuntu /var/www/laravel
sudo chown www-data:www-data /var/www/laravel/storage -R
composer install
cp .env.example .env
php artisan key:generate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment