Go to file
Jonathan Reinink 8b7672391c Update create organization form to use the new Inertia form 2020-12-22 13:33:00 -05:00
.github Add funding file 2020-03-30 13:35:22 -04:00
app Use Inertia Middleware for bootstrapping (#88) 2020-10-23 08:15:07 -04:00
bootstrap
config Upgrade to Laravel 8 2020-09-08 18:45:49 -04:00
database Add "failed_jobs" migration and cleanup migrations 2020-09-26 06:56:09 -04:00
public
resources Update create organization form to use the new Inertia form 2020-12-22 13:33:00 -05:00
routes Fix images route 2020-09-12 14:22:16 +03:00
storage
tests Upgrade to Laravel 8 2020-09-08 18:45:49 -04:00
.editorconfig Update editor config 2020-07-29 10:16:14 -04:00
.env.example Update example environment file 2020-07-29 10:12:52 -04:00
.eslintrc.js
.gitattributes
.gitignore Fix coding styles 2020-07-29 10:58:25 -04:00
.php_cs.dist Fix coding styles 2020-07-29 10:58:25 -04:00
LICENSE
Procfile Add Heroku Procfile 2019-12-18 13:33:19 -05:00
artisan
composer.json Use Inertia Middleware for bootstrapping (#88) 2020-10-23 08:15:07 -04:00
composer.lock Use Inertia Middleware for bootstrapping (#88) 2020-10-23 08:15:07 -04:00
package-lock.json Update Inertia 2020-09-24 17:24:07 +02:00
package.json Update Inertia 2020-09-24 17:24:07 +02:00
phpunit.xml Upgrade to Laravel 8 2020-09-08 18:45:49 -04:00
readme.md Merge pull request #35 from djm/patch-1 2020-01-08 22:38:37 -05:00
screenshot.png Add screenshot 2019-04-04 15:58:04 -04:00
server.php
tailwind.config.js WIP 2019-12-18 13:28:09 -05:00
webpack.mix.js Merge branch 'master' into pr/21 2020-01-08 22:16:10 -05:00

readme.md

Ping CRM

A demo application to illustrate how Inertia.js works.

Installation

Clone the repo locally:

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

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