]> cat aescling's git repositories - mastodon.git/blob - Vagrantfile
Merge pull request #1183 from ThibG/glitch-soc/merge-upstream
[mastodon.git] / Vagrantfile
1 # -*- mode: ruby -*-
2 # vi: set ft=ruby :
3
4 ENV["PORT"] ||= "3000"
5
6 $provision = <<SCRIPT
7
8 cd /vagrant # This is where the host folder/repo is mounted
9
10 # Add the yarn repo + yarn repo keys
11 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
12 sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
13
14 # Add repo for NodeJS
15 curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
16
17 # Add firewall rule to redirect 80 to PORT and save
18 sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port #{ENV["PORT"]}
19 echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
20 echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
21 sudo apt-get install iptables-persistent -y
22
23 # Add packages to build and run Mastodon
24 sudo apt-get install \
25 git-core \
26 g++ \
27 libpq-dev \
28 libxml2-dev \
29 libxslt1-dev \
30 imagemagick \
31 nodejs \
32 redis-server \
33 redis-tools \
34 postgresql \
35 postgresql-contrib \
36 protobuf-compiler \
37 yarn \
38 libicu-dev \
39 libidn11-dev \
40 libprotobuf-dev \
41 libreadline-dev \
42 libpam0g-dev \
43 -y
44
45 # Install rvm
46 read RUBY_VERSION < .ruby-version
47
48 gpg_command="gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB"
49 $($gpg_command)
50 if [ $? -ne 0 ];then
51 echo "GPG command failed, This prevented RVM from installing."
52 echo "Retrying once..." && $($gpg_command)
53 if [ $? -ne 0 ];then
54 echo "GPG failed for the second time, please ensure network connectivity."
55 echo "Exiting..." && exit 1
56 fi
57 fi
58
59 curl -sSL https://raw.githubusercontent.com/rvm/rvm/stable/binscripts/rvm-installer | bash -s stable --ruby=$RUBY_VERSION
60 source /home/vagrant/.rvm/scripts/rvm
61
62 # Install Ruby
63 rvm reinstall ruby-$RUBY_VERSION --disable-binary
64
65 # Configure database
66 sudo -u postgres createuser -U postgres vagrant -s
67 sudo -u postgres createdb -U postgres mastodon_development
68
69 # Install gems and node modules
70 gem install bundler foreman
71 bundle install
72 yarn install
73
74 # Build Mastodon
75 export $(cat ".env.vagrant" | xargs)
76 bundle exec rails db:setup
77
78 # Configure automatic loading of environment variable
79 echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
80
81 SCRIPT
82
83 $start = <<SCRIPT
84
85 echo 'To start server'
86 echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
87
88 SCRIPT
89
90 VAGRANTFILE_API_VERSION = "2"
91
92 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
93
94 config.vm.box = "ubuntu/xenial64"
95
96 config.vm.provider :virtualbox do |vb|
97 vb.name = "mastodon"
98 vb.customize ["modifyvm", :id, "--memory", "4096"]
99 # Increase the number of CPUs. Uncomment and adjust to
100 # increase performance
101 # vb.customize ["modifyvm", :id, "--cpus", "3"]
102
103 # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
104 # https://github.com/mitchellh/vagrant/issues/1172
105 vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
106 vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
107
108 # Use "virtio" network interfaces for better performance.
109 vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
110 vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
111
112 end
113
114 # This uses the vagrant-hostsupdater plugin, and lets you
115 # access the development site at http://mastodon.local.
116 # If you change it, also change it in .env.vagrant before provisioning
117 # the vagrant server to update the development build.
118 #
119 # To install:
120 # $ vagrant plugin install vagrant-hostsupdater
121 config.vm.hostname = "mastodon.local"
122
123 if defined?(VagrantPlugins::HostsUpdater)
124 config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
125 config.hostsupdater.remove_on_suspend = false
126 end
127
128 if config.vm.networks.any? { |type, options| type == :private_network }
129 config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'actimeo=1']
130 else
131 config.vm.synced_folder ".", "/vagrant"
132 end
133
134 # Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
135 config.vm.network :forwarded_port, guest: 3000, host: 3000
136 config.vm.network :forwarded_port, guest: 4000, host: 4000
137 config.vm.network :forwarded_port, guest: 8080, host: 8080
138
139 # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
140 config.vm.provision :shell, inline: $provision, privileged: false
141
142 # Start up script, runs on every 'vagrant up'
143 config.vm.provision :shell, inline: $start, run: 'always', privileged: false
144
145 end
This page took 0.080672 seconds and 4 git commands to generate.