# tangram-vm **Repository Path**: mirrors_tangrams/tangram-vm ## Basic Information - **Project Name**: tangram-vm - **Description**: A Vagrant VM for setting up and running the Tangram vector-map library - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README tangram-vm ============= A Vagrant virtual machine (VM) for setting up and running the Tangram WebGL vector-map display library (https://github.com/tangrams/tangram). (A virtual machine is an operating system emulator. This one runs Ubuntu, one of the most popular versions of Linux.) Live public demo: ![vector-map render of lower Manhattan](https://pbs.twimg.com/media/BpuBdL_CEAAhpWw.png:large) ###Requirements: - VirtualBox (https://www.virtualbox.org/) - Vagrant (https://www.vagrantup.com/downloads.html) ============= ###vm setup After cloning this repository and starting a terminal window inside the directory, the steps below will provision the VM. (You may need to confirm a ssh-authentication step.) # start the VM vagrant up vagrant ssh # navigate to the shared directory and run the first install script cd /vagrant bash install1.sh # open a new terminal window, ssh back into the vm, and run the second script vagrant ssh cd /vagrant bash install2.sh Test the setup in a browser: Note for Windows users: you may need to start the ssh-agent for each new bash session in order for git authentication to work. From outside the vm, run: eval `ssh-agent -s` ssh-add ~/.ssh/*_rsa See http://stackoverflow.com/a/19792331/738675