Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 648 Bytes

README.md

File metadata and controls

47 lines (37 loc) · 648 Bytes

Larawind

Larawind

A starter template for rapid web development made using Vue, Inertia, Laravel and Tailwind CSS

Requirements

  • PHP 8.2
  • RDBMS
  • Composer
  • Node
  • Git

Setup and Configuration

  1. Cloning and installation
git clone https://github.com/mis-bghmc/template-larawind.git
cd template-larawind
composer install
npm install
  1. Environment
copy .env.example .env
  1. Key Generation
php artisan key:generate
  1. Database
php artisan migrate
php artisan db:seed --class=DevelopmentSeeder
  1. App Serving
php artisan serve
npm run dev