Simple real-time Laravel application, with desktop notifications powered by Pusher To test this app locally:
- Clone this repo --
git clone https://github.com/olayinkaos/pusher-news-talk.git
. - Copy
.env.example
to.env
and configure your local environment variables, especially the database and pusher settings. - Install all dependencies --
composer install && npm install
- Generate a new application key -
php artisan key:generate
- Migrate the database tables --
php artisan migrate
- Edit in your Pusher App Key in
resources/assets/js/bootstrap.js
. - Run using your local web server, or PHP's built-in option -
php artisan serve