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