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_10.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
48 gpg_command="gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB"
51 echo "GPG command failed, This prevented RVM from installing."
52 echo "Retrying once..." && $($gpg_command)
54 echo "GPG failed for the second time, please ensure network connectivity."
55 echo "Exiting..." && exit 1
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
63 rvm reinstall ruby-$RUBY_VERSION --disable-binary
66 sudo -u postgres createuser -U postgres vagrant -s
67 sudo -u postgres createdb -U postgres mastodon_development
69 # Install gems and node modules
70 gem install bundler foreman
75 export RAILS_ENV=development
76 export $(cat ".env.vagrant" | xargs)
77 bundle exec rails db:setup
79 # Configure automatic loading of environment variable
80 echo 'export RAILS_ENV=development' >> ~/.bash_profile
81 echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
87 echo 'To start server'
88 echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
92 VAGRANTFILE_API_VERSION = "2"
94 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
96 config.vm.box = "ubuntu/bionic64"
98 config.vm.provider :virtualbox do |vb|
100 vb.customize ["modifyvm", :id, "--memory", "2048"]
101 # Increase the number of CPUs. Uncomment and adjust to
102 # increase performance
103 # vb.customize ["modifyvm", :id, "--cpus", "3"]
105 # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
106 # https://github.com/mitchellh/vagrant/issues/1172
107 vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
108 vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
110 # Use "virtio" network interfaces for better performance.
111 vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
112 vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
116 # This uses the vagrant-hostsupdater plugin, and lets you
117 # access the development site at http://mastodon.local.
118 # If you change it, also change it in .env.vagrant before provisioning
119 # the vagrant server to update the development build.
122 # $ vagrant plugin install vagrant-hostsupdater
123 config.vm.hostname = "mastodon.local"
125 if defined?(VagrantPlugins::HostsUpdater)
126 config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
127 config.hostsupdater.remove_on_suspend = false
130 if config.vm.networks.any? { |type, options| type == :private_network }
131 config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'actimeo=1']
133 config.vm.synced_folder ".", "/vagrant"
136 # Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
137 config.vm.network :forwarded_port, guest: 3000, host: 3000
138 config.vm.network :forwarded_port, guest: 4000, host: 4000
139 config.vm.network :forwarded_port, guest: 8080, host: 8080
141 # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
142 config.vm.provision :shell, inline: $provision, privileged: false
144 # Start up script, runs on every 'vagrant up'
145 config.vm.provision :shell, inline: $start, run: 'always', privileged: false