Saturday, March 8, 2025

Cloning Laravel dari Github

 

Installation Guide

Prerequisites

  • PHP >= 8.2
  • Composer
  • Node.js
  • npm

Installation Steps

  1. Clone the repository:

    git clone "isi urlnya"
  2. Navigate into the project directory:

    cd "nama foldernya"
  3. Install PHP dependencies:

    composer install
  4. Install JavaScript dependencies:

    npm install && npm run dev
  5. Copy the .env.example file and rename it to .env:

    copy .env.example .env
  6. Generate application key:

    php artisan key:generate
  7. Run database migrations:

    php artisan migrate
  8. Start the development server:

    php artisan serve
  9. Storage link
    
    php artisan storage:link
    
    
  10. Create User
    
    php artisan make:filament-user
    

No comments:

Post a Comment