Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 18 hours 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 (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-15T01:06:31.000Z (about 4 years ago)
- Last Synced: 2024-11-05T16:57:57.492Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 601 KB
- Stars: 0
- Watchers: 3
- 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.
![](https://raw.githubusercontent.com/inertiajs/pingcrm/master/screenshot.png)
## 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:** [email protected]
- **Password:** secret## Running tests
To run the Ping CRM tests, run:
```
phpunit
```