I have never used Node or Redis before, however in the app that I am building I am using node and Redis to run socket.io.js for some live updating features.
Currently in order for me to make this work, I have to open terminal and run
$ cd project/nodejs/Redis/lib/src
$ ./redis-server
Then I am not able to use that terminal window anymore. So I open a new terminal window and run
$ cd project/nodejs
$ node server.js
Once again I am also not able to use this terminal window any more.
Then I open another window and run
$ cd project
$ php artisan serve
How can I combine all of this and run it when some one navigates to the app URL?
Do I need to build a commands in the commands directory? I've done some research, but I am still confused. I had never used terminal until I started using laravel, so I really have no idea what I need to research.