I'm using vagrant (parallels on Mac) to boot a devstack. Vagrantfile is below. Devstack IP Address is 192.168.11.197.
Vagrant.configure('2') do |config|
config.vm.box = "trusty64"
sudo su
apt-get update && apt-get install -y libvirt-dev ruby-all-dev apparmor-utils
curl -O -L https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.5_x86_64.deb
dpkg -i vagrant_1.6.5_x86_64.deb
aa-complain /usr/lib/libvirt/virt-aa-helper # workaround
exit
new Openstack project for containers.
# VMware Fusion | |
config.vm.provider "vmware_fusion" do |vmware, override| | |
override.vm.box = "trusty64_fusion" | |
... snip ... | |
vmware.vmx["memsize"] = "6144" | |
vmware.vmx["numvcpus"] = "2" | |
vmware.vmx["vhv.enable"] = "TRUE" | |
end |
scripts/devtest.sh --trash-my-machine --build-only --existing-environment |
#!/usr/bin/env ruby -wKU | |
require 'time' | |
require 'nokogiri' | |
require 'fileutils' | |
class IPhotoBackup | |
IPHOTO_ALBUM_PATH = "~/Pictures/iPhoto Library/AlbumData.xml" | |
DEFAULT_OUTPUT_DIRECTORY = "~/Google Drive/Dropbox" | |
IPHOTO_EPOCH = Time.utc(2001, 1, 1) |
require 'sinatra' | |
get '/' do | |
hello | |
end | |
helpers do | |
def hello | |
'Hello World!' | |
end |
require 'sinatra' | |
get '/' do | |
hello | |
end | |
helpers do | |
def hello | |
'Hello World!' | |
end |
#!/usr/bin/env ruby -KU | |
require 'pp' | |
require 'optparse' | |
require 'cfoundry' | |
target = 'http://api.paas.fwdns.org' | |
org_admin_user = '[email protected]' | |
org_admin_password = 'micr0@micr0' |