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:
- Create a new repository using the public template on GitHub.
- Create a new fork on GitHub.
- Download the ZIP from GitHub.
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
Navigate to the project directory:
bashcd laravel-primevue-starter-kit
Copy the
.env.example
file to create a.env
file:bashcp .env.example .env
bashcopy .env.example .env
Install Composer dependencies:
bashcomposer install
Generate an application key:
bashphp artisan key:generate
Migrate database
bashphp artisan migrate
Install npm dependencies:
bashnpm install
Start the local Vite development server:
bashnpm run dev