A demo application to illustrate how Inertia.js works.
Clone the repo locally:
git clone https://github.com/inertiajs/pingcrm.git pingcrm
cd pingcrmInstall PHP dependencies:
composer installInstall NPM dependencies:
npm ciBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateRun database migrations:
php artisan migrateRun database seeder:
php artisan db:seedMake sure your redis is configured correctly in order for the queues to work
Run the dev server (the output will give the address):
php artisan serveRun the Websockets server (the output will give the address):
php artisan websockets:serveRun multiple QUEUE WORKERs :
php artisan queue:workYou're ready to go! Visit Ping CRM in your browser, and login with:
- Username: knikolovv98@gmail.com
- Password: koko9899?
To run the Ping CRM tests, run:
phpunit