Subreddit rules: Don't feature flag mod note
[reddit.git] / Vagrantfile
blob928fd7f53fccf41a55cc4c72671c3ba6fa1e36cd
1 # -*- mode: ruby -*-
2 # vi: set ft=ruby :
4 # This assumes that the host machine has r2 and all the reddit plugins checked
5 # out and in the correct directories--pay attention to both name and position
6 # relative to the r2 code:
8 # r2:         {ROOTDIR}/reddit
10 # plugins:
11 # i18n:       {ROOTDIR}/i18n
12 # about:      {ROOTDIR}/about
13 # meatspace:  {ROOTDIR}/meatspace
14 # liveupdate: {ROOTDIR}/liveupdate
15 # adzerk:     {ROOTDIR}/adzerk
16 # donate:     {ROOTDIR}/donate
17 # gold:       {ROOTDIR}/gold
19 # private internal reddit plugin:
20 # private:    {ROOTDIR}/private
22 # The plugins are all optional, but they will get cloned in the VM (and as a
23 # result be uneditable from the host) by the install script if their directory
24 # is missing but is included in `plugins` below. The general rule for naming
25 # each plugin directory is that "reddit-plugin-NAME" should be in the directory
26 # {ROOTDIR}/NAME.
28 # This VagrantFile allows for the creation of two VMs:
29 #   * default: the primary VM, with all services necessary to run reddit
30 #              locally against the local codebase.
31 #   * travis:  Testing-only VM suitable for running `nosetests` and debugging
32 #              issues encountered without having to wait for travis-ci to pick
33 #              up the build.  This will *not* be the same environment as
34 #              travis, but it should be useful for repairing broken tests.
36 # To start your vagrant box simply enter `vagrant up` from {ROOTDIR}/reddit.
37 # You can then ssh into it with `vagrant ssh`.
39 # avahi-daemon is installed on the guest VM so you can access your local install
40 # at https://reddit.local. If that fails you'll need to update your host
41 # machine's hosts file (/etc/hosts) to include the line:
42 # 192.168.56.111 reddit.local
44 # If you want to create additional vagrant boxes you can copy this file
45 # elsewhere, but be sure to update `code_share_host_path` to be the absolute
46 # path to {ROOTDIR}.
48 vagrant_user = "vagrant"
50 # code directories
51 code_share_host_path = "../"
52 code_share_guest_path = "/media/reddit_code"
53 plugins = ["meatspace", "about", "liveupdate", "adzerk", "donate", "gold"]
55 # overlayfs directories
56 overlay_mount = "/home/#{vagrant_user}/src"
57 overlay_lower = code_share_guest_path
58 overlay_upper = "/home/#{vagrant_user}/.overlay"
60 # "default" vm config
61 guest_ip = "192.168.56.111"
62 guest_mem = "4096"
63 guest_swap = "4096"
64 hostname = "reddit.local"
67 Vagrant.configure(2) do |config|
68   config.vm.box = "trusty-cloud-image"
69   config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/20151218/trusty-server-cloudimg-amd64-vagrant-disk1.box"
70   config.vm.box_download_checksum = "0975e1a73226563ec7791c9b2fd114a57e918e401f82f4778a44e43040e39609"
71   config.vm.box_download_checksum_type = "sha256"
73   # mount the host shared folder
74   config.vm.synced_folder code_share_host_path, code_share_guest_path, mount_options: ["ro"]
76   config.vm.provider "virtualbox" do |vb|
77     vb.memory = guest_mem
78   end
80   # ubuntu cloud image has no swapfile by default, set one up
81   config.vm.provision "shell", inline: <<-SCRIPT
82     if ! grep -q swapfile /etc/fstab; then
83       echo 'swapfile not found. Adding swapfile.'
84       fallocate -l #{guest_swap}M /swapfile
85       chmod 600 /swapfile
86       mkswap /swapfile
87       swapon /swapfile
88       echo '/swapfile none swap defaults 0 0' >> /etc/fstab
89     else
90       echo 'swapfile found. No changes made.'
91     fi
92   SCRIPT
94   # set up the overlay filesystem
95   config.vm.provision "shell", inline: <<-SCRIPT
96     if [ ! -d #{overlay_mount} ]; then
97       echo "creating overlay mount directory #{overlay_mount}"
98       sudo -u #{vagrant_user} mkdir #{overlay_mount}
99     fi
101     if [ ! -d #{overlay_upper} ]; then
102       echo "creating overlay upper directory #{overlay_upper}"
103       sudo -u #{vagrant_user} mkdir #{overlay_upper}
104     fi
106     echo "mounting overlayfs (lower: #{overlay_lower}, upper: #{overlay_upper}, mount: #{overlay_mount})"
107     mount -t overlayfs overlayfs -o lowerdir=#{overlay_lower},upperdir=#{overlay_upper} #{overlay_mount}
108   SCRIPT
110   # NOTE: This VM exists solely to assist in writing tests.  It does not actually
111   # install travis but rather builds a minimal vm with only the services
112   # available under a travis build to aid in test debugging (via `nosetests`)
113   # To use:
114   #     $ vagrant up travis
115   #     $ vagrant ssh travis
116   #     vagrant@travis$ cd src/reddit/r2 && nosetests
117   config.vm.define "travis", autostart: false do |travis|
118       travis.vm.hostname = "travis"
119       # run install script
120       plugin_string = plugins.join(" ")
121       travis.vm.provision "shell", inline: <<-SCRIPT
122         if [ ! -f /var/local/reddit_installed ]; then
123           echo "running install script"
124           cd /home/#{vagrant_user}/src/reddit
125           ./install/travis.sh vagrant
126           touch /var/local/reddit_installed
127         else
128           echo "install script already run"
129         fi
130       SCRIPT
131   end
133   # NB: this is the primary VM. To build run
134   #    $ vagrant up
135   # [though 'vagrant up default' will also work, the 'default' is redudnant]
136   # Once built, avahi-daemon should guarantee the instance will be accessible
137   # from https://reddit.local/
138   config.vm.define "default", primary: true do |redditlocal|
139       redditlocal.vm.hostname = hostname
140       # host-only network interface
141       redditlocal.vm.network "private_network", ip: guest_ip
143       # rabbitmq web interface
144       config.vm.network "forwarded_port", guest: 15672, host: 15672
146       # run install script
147       plugin_string = plugins.join(" ")
148       redditlocal.vm.provision "shell", inline: <<-SCRIPT
149         if [ ! -f /var/local/reddit_installed ]; then
150           echo "running install script"
151           cd /home/#{vagrant_user}/src/reddit
152           REDDIT_PLUGINS="#{plugin_string}" REDDIT_DOMAIN="#{hostname}" ./install/reddit.sh
153           touch /var/local/reddit_installed
154         else
155           echo "install script already run"
156         fi
157       SCRIPT
159       # set up private code
160       if File.exist?("#{code_share_host_path}/private/vagrant_setup.sh")
161         redditlocal.vm.provision "shell",
162           path: "#{code_share_host_path}/private/vagrant_setup.sh",
163           args: [vagrant_user]
164       end
166       # inject test data
167       redditlocal.vm.provision "shell", inline: <<-SCRIPT
168         if [ ! -f /var/local/test_data_injected ]; then
169           cd /home/#{vagrant_user}/src/reddit
170           sudo -u #{vagrant_user} reddit-run scripts/inject_test_data.py -c 'inject_test_data()'
171           touch /var/local/test_data_injected
172         else
173           echo "inject test data already run"
174         fi
176         # HACK: stop and start everything (otherwise sometimes there's an issue with
177         # ports being in use?)
178         reddit-stop
179         reddit-start
180       SCRIPT
182       # additional setup
183       redditlocal.vm.provision "shell", inline: <<-SCRIPT
184         if [ ! -f /var/local/additional_setup ]; then
185           apt-get install -y ipython avahi-daemon
186           touch /var/local/additional_setup
187         else
188           echo "additional setup already run"
189         fi
190       SCRIPT
192       # DONE: let this run whenever provision is run so that the user can see
193       # how to proceed.
194       redditlocal.vm.provision "shell", inline: <<-SCRIPT
195         cd /home/#{vagrant_user}/src/reddit
196         REDDIT_DOMAIN="#{hostname}" ./install/done.sh
197       SCRIPT
198   end