The app simulates a cryptocurrency exchanging platform and uses Laravel Notifications classes to notifies a user in real-time about new transfers.
You will need the Redis installed and running in your environemnt;
$ npm install -g laravel-echo-server;
$ mv laravel-echo-server.json.example laravel-echo-server.json
$ composer install
$ npm install && npm run dev
$ php artisan migrate
On your .env file replace fill with your environment data:
BROADCAST_DRIVER=redis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
$ laravel-echo-server start
MIT