]> cat aescling's git repositories - mastodon.git/blob - Vagrantfile
update vagrant configs (#8706)
[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 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
50
51 # Install Ruby
52 rvm reinstall ruby-$RUBY_VERSION --disable-binary
53
54 # Configure database
55 sudo -u postgres createuser -U postgres vagrant -s
56 sudo -u postgres createdb -U postgres mastodon_development
57
58 # Install gems and node modules
59 gem install bundler foreman
60 bundle install
61 yarn install
62
63 # Build Mastodon
64 export $(cat ".env.vagrant" | xargs)
65 bundle exec rails db:setup
66
67 # Configure automatic loading of environment variable
68 echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
69
70 SCRIPT
71
72 $start = <<SCRIPT
73
74 echo 'To start server'
75 echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
76
77 SCRIPT
78
79 VAGRANTFILE_API_VERSION = "2"
80
81 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
82
83 config.vm.box = "ubuntu/xenial64"
84
85 config.vm.provider :virtualbox do |vb|
86 vb.name = "mastodon"
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"]
91
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"]
96
97 # Use "virtio" network interfaces for better performance.
98 vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
99 vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
100
101 end
102
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.
107 #
108 # To install:
109 # $ vagrant plugin install vagrant-hostsupdater
110 config.vm.hostname = "mastodon.local"
111
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
115 end
116
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']
119 else
120 config.vm.synced_folder ".", "/vagrant"
121 end
122
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
127
128 # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
129 config.vm.provision :shell, inline: $provision, privileged: false
130
131 # Start up script, runs on every 'vagrant up'
132 config.vm.provision :shell, inline: $start, run: 'always', privileged: false
133
134 end
This page took 0.077674 seconds and 4 git commands to generate.