Skip to content

Latest commit

 

History

41 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Setup Guide

This guide will help you set up a Laravel project after cloning or pulling from a remote repository.

Prerequisites

Make sure you have the following installed on your machine:

  • PHP 8.2
  • Composer 2.8
  • npm 10.9
  • node.js 22.12

Steps

  1. Clone the repository

    git clone <repository-url>
    cd <repository-directory>
  2. Install PHP dependencies

    composer update
  3. Install Node.js dependencies

    npm install
  4. Set up environment variables

    Copy the .env.example file to .env:

    cp .env.example .env

    Generate the application key:

    php artisan key:generate

    Update the .env file with your database and other configurations.

  5. Run database migrations

    php artisan migrate
  6. Run the development server

    php artisan serve
  7. Compile assets

    npm run dev

Updating Dependencies

If you pull new changes from the remote repository, you may need to update your dependencies.

  1. Update PHP dependencies

    composer update
  2. Update Node.js dependencies

    npm update
  3. Run database migrations

    php artisan migrate
  4. Compile assets

    npm run dev

You should now be able to run the Laravel application with the latest changes.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages