A modular dashboard that scrapes data/apis for relevant information and displays it in an easy to consume way. Built with Laravel and Vue.js.
- Clone the project, switch to the directory, and run
vagrant up
- Install RabbitMQ (TODO: Include this in provisioning Vagrant Box)
- Install pip3
$ sudo apt install python3-pip
- Create a new user.
$ sudo rabbitmqctl add_user myuser mypassword
- Add a virtual host.
$ sudo rabbitmqctl add_vhost myvhost
- Allow user to access vhost.
$ sudo rabbitmqctl set_user_tags myuser mytag
$ sudo rabbitmqctl set_permissions -p myvhost myuser ".*" ".*" ".*"