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