Difference between revisions of "Laravel"

From belajarwiki
Jump to navigation Jump to search
 
Line 43: Line 43:
 
* https://laravel.com/docs/10.x
 
* https://laravel.com/docs/10.x
 
* https://igunawan.com/install-composer-di-ubuntu-20-04/
 
* https://igunawan.com/install-composer-di-ubuntu-20-04/
 +
* https://www.rumahweb.com/journal/cara-upload-laravel-ke-hosting-cpanel/

Latest revision as of 13:42, 12 February 2024

Instalasi

Pastikan sudah terdapat php yang terinstall.

Install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"

Kemudian cek HASH

HASH=`curl -sS https://composer.github.io/installer.sig`
php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"

Install composer secara global

sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer

Cek composer

composer

Install laravel

Misal nama foldernya adalah example-app

composer create-project laravel/laravel example-app

Jalankan laravel

cd example-app
php artisan serve

Atau dengan IP dan port tertentu

php artisan serve --host <IP> --port <no port>
php artisan serve --host 192.168.1.102 --port 80

Pranala Menarik

Referensi