| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | # -*- mode: ruby -*- | 
					
						
							|  |  |  | # vi: set ft=ruby : | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 01:28:49 +11:00
										 |  |  | $provision = <<SCRIPT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | cd /vagrant # This is where the host folder/repo is mounted | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 12:38:04 +11:00
										 |  |  | # Add the yarn repo + yarn repo keys | 
					
						
							|  |  |  | curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | 
					
						
							|  |  |  | sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | # Add repo for NodeJS | 
					
						
							|  |  |  | curl -sL https://deb.nodesource.com/setup_4.x | sudo bash - | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Add firewall rule to redirect 80 to 3000 and save | 
					
						
							|  |  |  | sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3000 | 
					
						
							|  |  |  | echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections | 
					
						
							|  |  |  | echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections | 
					
						
							|  |  |  | sudo apt-get install iptables-persistent -y | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Add packages to build and run Mastodon | 
					
						
							|  |  |  | sudo apt-get install \ | 
					
						
							|  |  |  |   git-core \ | 
					
						
							| 
									
										
										
										
											2017-01-12 23:20:55 +11:00
										 |  |  |   g++ \ | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |   libpq-dev \ | 
					
						
							|  |  |  |   libxml2-dev \ | 
					
						
							|  |  |  |   libxslt1-dev \ | 
					
						
							|  |  |  |   imagemagick \ | 
					
						
							|  |  |  |   nodejs \ | 
					
						
							|  |  |  |   redis-server \ | 
					
						
							|  |  |  |   redis-tools \ | 
					
						
							|  |  |  |   postgresql \ | 
					
						
							|  |  |  |   postgresql-contrib \ | 
					
						
							| 
									
										
										
										
											2017-01-08 12:38:04 +11:00
										 |  |  |   yarn \ | 
					
						
							| 
									
										
										
										
											2017-01-12 23:20:55 +11:00
										 |  |  |   libreadline-dev \ | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |   -y | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 23:20:55 +11:00
										 |  |  | # Install rbenv | 
					
						
							|  |  |  | git clone https://github.com/rbenv/rbenv.git ~/.rbenv | 
					
						
							|  |  |  | cd ~/.rbenv && src/configure && make -C src | 
					
						
							|  |  |  | echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | 
					
						
							|  |  |  | echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export PATH="$HOME/.rbenv/bin::$PATH" | 
					
						
							|  |  |  | eval "$(rbenv init -)" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cd /vagrant | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-11 06:06:07 -07:00
										 |  |  | echo "Compiling Ruby $(cat .ruby-version): warning, this takes a while!!!" | 
					
						
							|  |  |  | rbenv install $(cat .ruby-version) | 
					
						
							|  |  |  | rbenv global $(cat .ruby-version) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | # Configure database | 
					
						
							|  |  |  | sudo -u postgres createuser -U postgres vagrant -s | 
					
						
							|  |  |  | sudo -u postgres createdb -U postgres mastodon_development | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Install gems and node modules | 
					
						
							| 
									
										
										
										
											2017-01-12 23:20:55 +11:00
										 |  |  | gem install bundler | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | bundle install | 
					
						
							|  |  |  | yarn install | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Build Mastodon | 
					
						
							|  |  |  | bundle exec rails db:setup | 
					
						
							|  |  |  | bundle exec rails assets:precompile | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SCRIPT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 01:28:49 +11:00
										 |  |  | $start = <<SCRIPT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cd /vagrant | 
					
						
							|  |  |  | export $(cat ".env.vagrant" | xargs) | 
					
						
							|  |  |  | rails s -d -b 0.0.0.0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SCRIPT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | VAGRANTFILE_API_VERSION = "2" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   config.vm.box = "ubuntu/trusty64" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   config.vm.provider :virtualbox do |vb| | 
					
						
							|  |  |  |     vb.name = "mastodon" | 
					
						
							|  |  |  |     vb.customize ["modifyvm", :id, "--memory", "1024"] | 
					
						
							| 
									
										
										
										
											2017-04-06 22:34:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions. | 
					
						
							|  |  |  |     # https://github.com/mitchellh/vagrant/issues/1172 | 
					
						
							|  |  |  |     vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"] | 
					
						
							|  |  |  |     vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Use "virtio" network interfaces for better performance. | 
					
						
							|  |  |  |     vb.customize ["modifyvm", :id, "--nictype1", "virtio"] | 
					
						
							|  |  |  |     vb.customize ["modifyvm", :id, "--nictype2", "virtio"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   config.vm.hostname = "mastodon.dev" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # This uses the vagrant-hostsupdater plugin, and lets you | 
					
						
							|  |  |  |   # access the development site at http://mastodon.dev. | 
					
						
							|  |  |  |   # To install: | 
					
						
							| 
									
										
										
										
											2017-04-06 22:34:59 +02:00
										 |  |  |   #   $ vagrant plugin install vagrant-hostsupdater | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |   if defined?(VagrantPlugins::HostsUpdater) | 
					
						
							| 
									
										
										
										
											2017-04-06 22:34:59 +02:00
										 |  |  |     config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio" | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |     config.hostsupdater.remove_on_suspend = false | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-05 11:53:39 -07:00
										 |  |  |   config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 01:28:49 +11:00
										 |  |  |   # Otherwise, you can access the site at http://localhost:3000 | 
					
						
							|  |  |  |   config.vm.network :forwarded_port, guest: 80, host: 3000 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  |   # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision' | 
					
						
							| 
									
										
										
										
											2017-01-08 01:28:49 +11:00
										 |  |  |   config.vm.provision :shell, inline: $provision, privileged: false | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Start up script, runs on every 'vagrant up' | 
					
						
							| 
									
										
										
										
											2017-01-08 01:28:49 +11:00
										 |  |  |   config.vm.provision :shell, inline: $start, run: 'always', privileged: false | 
					
						
							| 
									
										
										
										
											2017-01-07 23:22:24 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | end |