ycs77 / pingcrm-vue3-ts

A demo application to illustrate how Inertia.js works.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ping CRM (Vue 3 Options API x TS)

PingCRM Vue x TS:Options API demo | Composition API (<script setup>) demo


A demo application to illustrate how Inertia.js works.

Installation

Clone the repo locally:

git clone https://github.com/ycs77/pingcrm-vue3-ts.git
cd pingcrm-vue3-ts

Install PHP dependencies:

composer install

Install NPM dependencies:

yarn install

Build assets:

yarn 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

Run the SSR server:

yarn ssr:serve

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

Generate Models Type Declaration

To generate the Laravel models's type declaration file:

php artisan typescript:generate

Running tests

To run the Ping CRM tests, run:

phpunit

About

A demo application to illustrate how Inertia.js works.

License:MIT License


Languages

Language:PHP 68.3%Language:Vue 30.9%Language:Shell 0.5%Language:Blade 0.4%Language:Procfile 0.0%