Difference between revisions of "Laravel"

From belajarwiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 19: Line 19:
  
 
  composer
 
  composer
+
 
 
====Install laravel====
 
====Install laravel====
  
Line 29: Line 29:
  
 
  cd example-app
 
  cd example-app
  php artisan serve --host
+
  php artisan serve
  
 
Atau dengan IP dan port tertentu
 
Atau dengan IP dan port tertentu
Line 38: Line 38:
 
===Pranala Menarik===
 
===Pranala Menarik===
 
* [[Apache dan MySQL]]
 
* [[Apache dan MySQL]]
 +
* [[Laravel API]]
  
 
===Referensi===
 
===Referensi===
 
* 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