https://github.com/inertiajs/pingcrm-vue2
A demo application to illustrate how Inertia.js works.
https://github.com/inertiajs/pingcrm-vue2
inertiajs laravel vue2
Last synced: 3 months ago
JSON representation
A demo application to illustrate how Inertia.js works.
- Host: GitHub
- URL: https://github.com/inertiajs/pingcrm-vue2
- Owner: inertiajs
- License: mit
- Created: 2021-12-16T14:24:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T19:01:07.000Z (over 3 years ago)
- Last Synced: 2025-03-23T04:11:31.400Z (3 months ago)
- Topics: inertiajs, laravel, vue2
- Language: PHP
- Homepage:
- Size: 1.93 MB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Ping CRM (Vue 2 version)
A demo application to illustrate how Inertia.js works.

## Installation
Clone the repo locally:
```sh
git clone https://github.com/inertiajs/pingcrm-vue2.git pingcrm-vue2
cd pingcrm-vue2
```Install PHP dependencies:
```sh
composer install
```Install NPM dependencies:
```sh
npm ci
```Build assets:
```sh
npm run dev
```Setup configuration:
```sh
cp .env.example .env
```Generate application key:
```sh
php artisan key:generate
```Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
```sh
touch database/database.sqlite
```Run database migrations:
```sh
php artisan migrate
```Run database seeder:
```sh
php artisan db:seed
```Run the dev server (the output will give the address):
```sh
php artisan serve
```You're ready to go! Visit Ping CRM in your browser, and login with:
- **Username:** [email protected]
- **Password:** secret## Running tests
To run the Ping CRM tests, run:
```
phpunit
```