- download .dmg from https://www.vagrantup.com/downloads.html
- install
- might need virtual box already installed
- i setup mine in ~/VirtualBox\ VMs/
git clone https://github.com/coreos/coreos-vagrant
cd coreos-vagrant
subl Vagrantfile
- uncomment line 124
config.vm.synced_folder "~/", "/home/core/share", id: "core", :nfs => true, :mount_options => ['nolock,vers=3,tcp']
vagrant up
- wait for setup
vagrant ssh
exit
ip addr show eth1 | awk '/inet/ {print $2}' | cut -d/ -f1
replace the ip with the ip from the line above
sudo echo "172.17.8.101 coreos" >> /etc/hosts
install haxe from http://haxe.org/download/
setup haxelib
haxelib setup
install dependencies
haxelib install utest
docker run --name postgres-server -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres