Vagrant box for Tangelo's master server
Clone the frontend master server
git clone [email protected]:ProjectTangelo/frontend-poc.git ./serverStart vagrant and connect
vagrant up
vagrant sshInside the virtual machine, install server dependancies
cd /vagrant/server
sudo npm installRun the following command to start the server on http://33.33.33.10
cd /vagrant/server
sudo node tangeloIn order to sync on windows, run:
vagrant rsyncor to run a process that will watch the files and sync automatically:
vagrant auto-rsyncYou can run these commands to stop and destroy the virtual machine created by the previous commands once the ssh connection is terminated.
vagrant halt
vagrant -f destroy