Quick Start
Up and Running in 5 Minutes
No complex setup. Works out of the box.
Works on Windows, Mac & Linux
bash
# Clone the repository
git clone https://github.com/ProgrammerNomad/LaraCoreKit.git
cd LaraCoreKit
# Install dependencies
composer install
npm install
# Setup environment
cp .env.example .env
php artisan key:generate
# Setup database & seed demo data
php artisan migrate --seed
# Build frontend assets
npm run build
# Start development server
php artisan serve