Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

laravel instal

composer global require laravel/installer

laravel new example-app

php artisan serve
Comment

laravel install

composer create-project laravel/laravel <example-app>
Comment

laravel installer

# Laravel installer
composer global require laravel/installer
# install laravel project using this command
laravel new example-app
Comment

laravel install

composer create-project --prefer-dist laravel/laravel blog "5.6.*"
Comment

laravel install

To install laravel v9 you will need apache2, php8 and composerv2 (Ubuntu 20.04/Ubuntu 18.04)
sudo apt update
sudo apt upgrade

Install and start apache2
sudo apt install apache2
sudo service apache2 start
Open: http://localhost:80
sudo service apache2 stop

Install php8
sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update
sudo apt-get install php8.0 php8.0-cli php8.0-common php8.0-xml php8.0-curl
php -v

Enable mods
sudo a2enmod php8.0
sudo a2enmod headers
sudo a2enmod rewrite

Install composerv2
cd /home/user
curl -sS https://getcomposer.org/installer -o composer-setup.php
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
compsoer -V

Install laravel project
composer create-project laravel/laravel example-app
php artisan key:generate --ansi
php artisan serve

Configuration file for apache2 example
cd /etc/apache2
sudo a2dissite 000-default.conf
cd /sites-available
sudo touch appName.conf

sudo nano appName.conf
Copy, paste and configurate:
---------------------------------------------------------------------------------
<VirtualHost *:80>
	ServerName name.local

    // If project is based on multiple env (admin/frontend)
	SetEnv ACTIVE_MODULE frontend
	
	DocumentRoot "pathDirectory/laravel/public"
	<Directory "pathDirectory/laravel/public">
	    Options Indexes FollowSymLinks MultiViews
	    AllowOverride All
	    Require all granted
	    Order allow,deny
	    Allow from all
	</Directory>

	ErrorLog /var/log/apache2/fileName.err
	CustomLog /var/log/apache2/fileName combined
</VirtualHost>
---------------------------------------------------------------------------------

sudo a2ensite appName.conf
sudo service apache2 restart
or
sudo service apache2 start
Comment

laravel download

composer global require "laravel/installer=~1.1"
Comment

laravel install

composer create-project laravel/laravel contoh-app
cd contoh-app
php artisan serve
Comment

PREVIOUS NEXT
Code Example
Shell :: how to run deb file 
Shell :: linux show uid 
Shell :: ubuntu arial font 
Shell :: update git config username and email 
Shell :: bash check if python package is installed 
Shell :: open jupyter notebook with anaconda in powershell 
Shell :: bash vertical bar 
Shell :: sum decimals bash 
Shell :: Failed at the sharp@0.16.2 install script 
Shell :: restart ubuntu 18.04 server 
Shell :: git push to branch 
Shell :: docker prune -a 
Shell :: install docker fedora 
Shell :: visual studio code update git password 
Shell :: git update password 
Shell :: how to go to a folder in git bash 
Shell :: restart wsl2 windows 10 
Shell :: global configuration git 
Shell :: kill screen sessions 
Shell :: node-sass run 
Shell :: post curl request 
Shell :: install gatsby typography 
Shell :: see unpushed commits 
Shell :: kubeadm print join command 
Shell :: sudo snap linux store 
Shell :: how to create a group in linux 
Shell :: show internet password 
Shell :: how to download using curl 
Shell :: hardhat deploy 
Shell :: mac terminal unzip to directory 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =