8 cd /vagrant # This is where the host folder/repo is mounted
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'
15 curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
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
23 # Add packages to build and run Mastodon
24 sudo apt-get install \
46 read RUBY_VERSION < .ruby-version
47 gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
48 curl -sSL https://raw.githubusercontent.com/rvm/rvm/stable/binscripts/rvm-installer | bash -s stable --ruby=$RUBY_VERSION
49 source /home/vagrant/.rvm/scripts/rvm
52 rvm reinstall ruby-$RUBY_VERSION --disable-binary
55 sudo -u postgres createuser -U postgres vagrant -s
56 sudo -u postgres createdb -U postgres mastodon_development
58 # Install gems and node modules
59 gem install bundler foreman
64 export $(cat ".env.vagrant" | xargs)
65 bundle exec rails db:setup
67 # Configure automatic loading of environment variable
68 echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
74 echo 'To start server'
75 echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
79 VAGRANTFILE_API_VERSION = "2"
81 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
83 config.vm.box = "ubuntu/xenial64"
85 config.vm.provider :virtualbox do |vb|
87 vb.customize ["modifyvm", :id, "--memory", "2048"]
88 # Increase the number of CPUs. Uncomment and adjust to
89 # increase performance
90 # vb.customize ["modifyvm", :id, "--cpus", "3"]
92 # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
93 # https://github.com/mitchellh/vagrant/issues/1172
94 vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
95 vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
97 # Use "virtio" network interfaces for better performance.
98 vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
99 vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
103 # This uses the vagrant-hostsupdater plugin, and lets you
104 # access the development site at http://mastodon.local.
105 # If you change it, also change it in .env.vagrant before provisioning
106 # the vagrant server to update the development build.
109 # $ vagrant plugin install vagrant-hostsupdater
110 config.vm.hostname = "mastodon.local"
112 if defined?(VagrantPlugins::HostsUpdater)
113 config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
114 config.hostsupdater.remove_on_suspend = false
117 if config.vm.networks.any? { |type, options| type == :private_network }
118 config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'actimeo=1']
120 config.vm.synced_folder ".", "/vagrant"
123 # Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
124 config.vm.network :forwarded_port, guest: 3000, host: 3000
125 config.vm.network :forwarded_port, guest: 4000, host: 4000
126 config.vm.network :forwarded_port, guest: 8080, host: 8080
128 # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
129 config.vm.provision :shell, inline: $provision, privileged: false
131 # Start up script, runs on every 'vagrant up'
132 config.vm.provision :shell, inline: $start, run: 'always', privileged: false