Author: https://github.com/Loksly
I've written my own Vagrantfile to test your app.
I want to share it so someone can find it useful.
Just remove the extension of the file (remove .txt). And run at command line:
vagrant up
Once the deployment is completed you may access it through:
http://localhost:9000/
You need a mysql server with an empty database, you may use something like this:
create database lhc;
GRANT ALL PRIVILEGES ON lhc.* TO 'myuser'@'%' identified by 'mypasswd';
flush privileges;
Note this is not the best way to deploy a production system but a developing one.
https://github.com/LiveHelperChat/livehelperchat/files/476855/Vagrantfile.txt
Relevant github issue
https://github.com/LiveHelperChat/livehelperchat/issues/911