Skip to content

Latest commit

 

History

History
83 lines (54 loc) · 1.16 KB

readme.md

File metadata and controls

83 lines (54 loc) · 1.16 KB

SIMPLE UI ADMIN

A simple UI admin panel for Laravel/Inertia with Tailwindcss and VueJS 3

a fork from https://github.com/inertiajs/pingcrm.git !!

Installation

Clone the repo locally:

git clone https://github.com/inertiajs/pingcrm.git  simple_ui_admin
cd simple_ui_admin

Install PHP dependencies:

composer install

Install NPM dependencies:

npm ci

Build assets:

npm run dev

Setup configuration:

cp .env.example .env

Generate application key:

php artisan key:generate

Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.

touch database/database.sqlite

Run database migrations:

php artisan migrate

Run database seeder:

php artisan db:seed

Run the dev server (the output will give the address):

php artisan serve

You're ready to go! Visit Ping CRM in your browser, and login with:

Running tests

To run the Ping CRM tests, run:

phpunit