4 # This file is for use by Vagrant (http://www.vagrantup.com/).
5 # It will establish a debian-based (Ubuntu) virtual machine for development.
7 # The virtual machine environment attempts to match the production environment
8 # as closely as possible.
10 # This file was generated by `vagrant up` and consequently modified.
12 # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
13 VAGRANTFILE_API_VERSION = "2"
15 # Copy the vagrant SSH key into the VM so vagrant can SSH to localhost within
16 # the VM. Continued in the shell script below.
17 # http://serverfault.com/questions/491343/how-can-i-move-my-deploy-key-into-vagrant#comment549259_491345
18 git_ssh_key = File.read(ENV['HOME'] + '/.vagrant.d/insecure_private_key');
20 # build a shell script that installs prereqs, copies over the host secrets,
21 # configures the database, sets up the user/group associations, pulls in the
22 # code from the host machine, sets up some external dependency configs, and
24 shellscript = <<SCRIPT
25 cat >>/home/vagrant/.ssh/insecure_private_key <<EOF
28 chown vagrant:vagrant /home/vagrant/.ssh/insecure_private_key
29 chmod 600 /home/vagrant/.ssh/insecure_private_key
30 cat >>/home/vagrant/.ssh/config <<EOF
33 IdentityFile ~/.ssh/insecure_private_key
37 IdentityFile ~/.ssh/insecure_private_key
39 chmod 644 /home/vagrant/.ssh/config
43 apt-get install -y python-pip postgresql python-virtualenv virtualenvwrapper \
44 git nginx postgresql-server-dev-9.1 libxslt1-dev \
45 libxml2-dev libmemcached-dev python-dev rabbitmq-server \
48 echo "CREATE USER vagrant WITH CREATEROLE LOGIN; CREATE DATABASE karmaworld OWNER vagrant;" | su postgres -c "psql"
50 mkdir -m 775 -p /var/www
51 chown -R :www-data /var/www
52 usermod -a -G www-data vagrant
54 su vagrant -c "git clone /vagrant karmaworld"
56 SECRETPATH="karmaworld/secret"
58 su vagrant -c "cp /vagrant/$SECRETPATH/* karmaworld/$SECRETPATH/"
60 CFILE="karmaworld/$SECRETPATH/db_settings.py"
64 # Copyright (C) 2012 FinalsClub Foundation
66 DO NOT check this file into source control.
68 PROD_DB_NAME = 'karmaworld'
69 PROD_DB_USERNAME = 'vagrant'
72 cp $SECRETPATH/filepicker.py.example $SECRETPATH/filepicker.py
73 cp $SECRETPATH/static_s3.py.example $SECRETPATH/static_s3.py
74 chown vagrant:vagrant $SECRETPATH/*.py
76 cat > /etc/nginx/sites-available/karmaworld <<CONFIG
79 # don't do virtual hosting, handle all requests regardless of header
81 client_max_body_size 20M;
84 # pass traffic through to gunicorn
85 proxy_pass http://127.0.0.1:8000;
89 rm /etc/nginx/sites-enabled/default
90 ln -s /etc/nginx/sites-available/karmaworld /etc/nginx/sites-enabled/karmaworld
91 sudo service nginx restart
93 cp karmaworld/confs/prod/supervisor /etc/init.d
94 chmod 755 /etc/init.d/supervisor
95 update-rc.d supervisor defaults
98 #su vagrant -c "cd karmaworld; fab -H 127.0.0.1 first_deploy"
102 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
103 # All Vagrant configuration is done here. The most common configuration
104 # options are documented and commented below. For a complete reference,
105 # please see the online documentation at vagrantup.com.
107 # Every Vagrant virtual environment requires a box to build off of.
108 config.vm.box = "Official Ubuntu 12.04 daily Cloud Image i386"
109 #config.vm.box = "Official Ubuntu 12.04 daily Cloud Image amd64"
110 #config.vm.box = "Official Ubuntu 12.10 daily Cloud Image i386"
111 #config.vm.box = "Official Ubuntu 12.10 daily Cloud Image amd64"
112 #config.vm.box = "Official Ubuntu 13.04 daily Cloud Image i386"
113 #config.vm.box = "Official Ubuntu 13.04 daily Cloud Image amd64"
114 #config.vm.box = "Official Ubuntu 13.10 daily Cloud Image i386"
115 #config.vm.box = "Official Ubuntu 13.10 daily Cloud Image amd64"
117 # The url from where the 'config.vm.box' box will be fetched if it
118 # doesn't already exist on the user's system.
119 config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-i386-vagrant-disk1.box"
120 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
121 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/quantal/current/quantal-server-cloudimg-i386-vagrant-disk1.box"
122 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/quantal/current/quantal-server-cloudimg-amd64-vagrant-disk1.box"
123 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box"
124 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-amd64-vagrant-disk1.box"
125 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-i386-vagrant-disk1.box"
126 #config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box"
128 # Create a forwarded port mapping which allows access to a specific port
129 # within the machine from a port on the host machine. In the example below,
130 # accessing "localhost:8080" will access port 80 on the guest machine.
131 # config.vm.network :forwarded_port, guest: 80, host: 8080
133 # OM (sanskrit) KW (KarmaWorld) on a phone: 66 59
134 config.vm.network :forwarded_port, guest: 80, host: 6659, auto_correct: true
136 # Create a private network, which allows host-only access to the machine
137 # using a specific IP.
138 #config.vm.network :private_network, ip: "192.168.66.59"
140 # Create a public network, which generally matched to bridged network.
141 # Bridged networks make the machine appear as another physical device on
143 # Used to directly access the internet for downloading updates and so forth.
144 config.vm.network :public_network
146 # If true, then any SSH connections made will enable agent forwarding.
147 # Default value: false
148 # config.ssh.forward_agent = true
150 # Share an additional folder to the guest VM. The first argument is
151 # the path on the host to the actual folder. The second argument is
152 # the path on the guest to mount the folder. And the optional third
153 # argument is a set of non-required options.
154 # config.vm.synced_folder "../data", "/vagrant_data"
157 config.vm.provision "shell", inline: shellscript
159 # Provider-specific configuration so you can fine-tune various
160 # backing providers for Vagrant. These expose provider-specific options.
161 # Example for VirtualBox:
163 # config.vm.provider :virtualbox do |vb|
164 # # Don't boot with headless mode
167 # # Use VBoxManage to customize the VM. For example to change memory:
168 # vb.customize ["modifyvm", :id, "--memory", "1024"]
171 # View the documentation for the provider you're using for more
172 # information on available options.
174 # Enable provisioning with Puppet stand alone. Puppet manifests
175 # are contained in a directory path relative to this Vagrantfile.
176 # You will need to create the manifests directory and a manifest in
177 # the file base.pp in the manifests_path directory.
179 # An example Puppet manifest to provision the message of the day:
181 # # group { "puppet":
182 # # ensure => "present",
185 # # File { owner => 0, group => 0, mode => 0644 }
187 # # file { '/etc/motd':
188 # # content => "Welcome to your Vagrant-built virtual machine!
189 # # Managed by Puppet.\n"
192 # config.vm.provision :puppet do |puppet|
193 # puppet.manifests_path = "manifests"
194 # puppet.manifest_file = "site.pp"
197 # Enable provisioning with chef solo, specifying a cookbooks path, roles
198 # path, and data_bags path (all relative to this Vagrantfile), and adding
199 # some recipes and/or roles.
201 # config.vm.provision :chef_solo do |chef|
202 # chef.cookbooks_path = "../my-recipes/cookbooks"
203 # chef.roles_path = "../my-recipes/roles"
204 # chef.data_bags_path = "../my-recipes/data_bags"
205 # chef.add_recipe "mysql"
206 # chef.add_role "web"
208 # # You may also specify custom JSON attributes:
209 # chef.json = { :mysql_password => "foo" }
212 # Enable provisioning with chef server, specifying the chef server URL,
213 # and the path to the validation key (relative to this Vagrantfile).
215 # The Opscode Platform uses HTTPS. Substitute your organization for
216 # ORGNAME in the URL and validation key.
218 # If you have your own Chef Server, use the appropriate URL, which may be
219 # HTTP instead of HTTPS depending on your configuration. Also change the
220 # validation key to validation.pem.
222 # config.vm.provision :chef_client do |chef|
223 # chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
224 # chef.validation_key_path = "ORGNAME-validator.pem"
227 # If you're using the Opscode platform, your validator client is
228 # ORGNAME-validator, replacing ORGNAME with your organization name.
230 # If you have your own Chef Server, the default validation client name is
231 # chef-validator, unless you changed the configuration.
233 # chef.validation_client_name = "ORGNAME-validator"