This is a vagrant box that includes some GIS related tools for hacking. You can use it to get started with some standard tools without worrying about messing up your local machine.
gem install vagrant
git clone https://github.com/zhm/geobox
cd geobox
git submodule init
git submodule update
vagrant box add precise http://files.vagrantup.com/precise64.box
to build the VM from the base image and ssh into it:
vagrant up
vagrant ssh
exiting ssh from the VM:
exit
or to stop it from the host:
vagrant suspend
to destroy the VM from the host (to either delete it completely or rebuild it):
vagrant destroy
then to rebuild everything:
vagrant up
Note: Starting the machine for the first time will take about 20-30 minutes since it builds ruby, node, and PostGIS from source.
To access the CartoDB server, you need to add something to your host file.
echo "22.22.22.22 cartodb.localhost.lan" | tee -a /etc/hosts
Once you have cartodb.localhost.lan resolving, you go to http://cartodb.localhost.lan:3000
in your browser to get to CartoDB.
CartoDB is started using WEBrick in the background, but you can kill it manually and start it via ssh manually if you want:
cd /usr/local/src/cartodb
sudo kill `pids/cartodb.pid`
bundle exec rails server
To access the postgres instance from outside the VM (e.g. psql or pgAdmin), use 22.22.22.22 and username vagrant
and password vagrant
.
This can be convenient for loading data that's on your local machine or being able to use pgAdmin to get to the database.
If you want to add your own stuff, you will want to take a look at default.rb. It has most of the hackish code that installs and sets up the box. Improvements are welcome since I have no idea what I'm doing.
core
recipe into different recipesexecute
commands to be more resilient to the vagrant reload
command so they don't rebuild every time (mostly done, albeit hacky)