Skip to content

Installation Guide

Source Code

Clone from source repository:

bash
git clone https://github.com/connorabbas/laravel-primevue-starter-kit.git
bash
git clone git@github.com:connorabbas/laravel-primevue-starter-kit.git

Alternatively:

Development Environment

Basic

The easiest way to get started developing locally is to use either Laravel Herd, or Laragon.

Docker

If you want more flexibility and already have Docker knowledge, this starter kit provides a streamlined Docker development setup to get you up and running in no time.

Setup

  1. Navigate to the project directory:

    bash
    cd laravel-primevue-starter-kit
  2. Copy the .env.example file to create a .env file:

    bash
        cp .env.example .env
    bash
        copy .env.example .env
  3. Install Composer dependencies:

    bash
    composer install
  4. Generate an application key:

    bash
    php artisan key:generate
  5. Migrate database

    bash
    php artisan migrate
  6. Install npm dependencies:

    bash
    npm install
  7. Start the local Vite development server:

    bash
    npm run dev