Skip to content
On this page

Quick Start

Prerequisite

  • Node LTS version is required
  • PHP 8.2.0 or greater version is required
  • Any Package Manager (NPM | Yarn | PNPM)

Getting started

  • Download and unzip our Package

  • Navigate to the Full-version Or Starter-kit folder

  • Open the folder in your desire code editor and run below command

    bash
    Composer install
  • In the root directory, you will find a file named .env.example rename the given file name to .env and run the following command to generate the key (You can also edit your data base credentials here)

    bash
    php artisan key:generate
  • By running the following command, you will be able to get all the dependencies in your node_modules folder:

    bash
    # For Yarn
    yarn
    
    # For npm
    npm install --legacy-peer-deps
  • You can run the development server via the dev command, which is useful while developing locally. The development server will automatically detect changes to your files and instantly reflect them in any open browser windows.

    bash
    # For yarn
    yarn dev
    
    # For npm
    npm run dev
  • To serve the application you need to run the following command in the project directory. (This will give you an address with port number 8000)

Now navigate to the given address you will see your application is running.

bash
php artisan serve

Generating build for production

Running the build command will version and bundle your application's assets and get them ready for you to deploy to production:

bash
# For yarn
yarn build

# For npm
npm run build