Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to check laravel installer version

//laravel installer
laravel --version
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 4 installer

composer global require "laravel/installer=~4.0"
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 install

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

laravel installer version

Laravel Installer Version Check 
laravel -version
ex. laravel -version
Result : Laravel Installer 4.1.1

Comment

PREVIOUS NEXT
Code Example
Shell :: shell basename 
Shell :: how to create a new branch 
Shell :: batch file with flags 
Shell :: install bazel ubuntu 20.04 
Shell :: yum check package version 
Shell :: wsl python image 
Shell :: find docker compose location 
Shell :: permission terminal ubuntu 
Shell :: how to delete your aliace from the git 
Shell :: Unable to correct problems, you have held broken packages installing cuda 
Shell :: how to search on vim 
Shell :: install jellyfin docker 
Shell :: sort in linux 
Shell :: vim sudo trick 
Shell :: How to remove every other line with sed? 
Shell :: create repo with name 
Shell :: unix timestamp bash 
Shell :: mongodb install windows 
Shell :: how to remove all files with a certain file type in terminal 
Shell :: git add untracked to gitignore 
Shell :: how to cd into a directory with jenkins pipeline 
Shell :: linux docker 
Shell :: git stash changes to particular file 
Shell :: how to check ssh agent is running in git bash 
Shell :: linux dig command all dns records 
Shell :: how to git commit and push 
Shell :: bash cd root permission denied 
Shell :: shell substring last characters 
Shell :: where can i sell my laptop 
Shell :: Mongodb admin login 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =