https://github.com/mathieutu/pingcrm-graphql
A test of adding a autogenerated and optimized graphql api in a Laravel project.
https://github.com/mathieutu/pingcrm-graphql
Last synced: 8 months ago
JSON representation
A test of adding a autogenerated and optimized graphql api in a Laravel project.
- Host: GitHub
- URL: https://github.com/mathieutu/pingcrm-graphql
- Owner: mathieutu
- License: mit
- Created: 2020-11-15T00:53:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-15T01:06:31.000Z (over 5 years ago)
- Last Synced: 2025-06-09T21:47:09.540Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 601 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Ping CRM
A demo application to illustrate how Inertia.js works.

## Installation
Clone the repo locally:
```sh
git clone https://github.com/inertiajs/pingcrm.git pingcrm
cd pingcrm
```
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:** johndoe@example.com
- **Password:** secret
## Running tests
To run the Ping CRM tests, run:
```
phpunit
```