]> cat aescling's git repositories - mastodon.git/blob - Vagrantfile
Increase max height of preview card image (#5092)
[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_6.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 -y
43
44 # Install rvm
45 read RUBY_VERSION < .ruby-version
46 gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
47 curl -sSL https://raw.githubusercontent.com/rvm/rvm/stable/binscripts/rvm-installer | bash -s stable --ruby=$RUBY_VERSION
48 source /home/vagrant/.rvm/scripts/rvm
49
50 # Install Ruby
51 rvm install ruby-$RUBY_VERSION
52
53 # Configure database
54 sudo -u postgres createuser -U postgres vagrant -s
55 sudo -u postgres createdb -U postgres mastodon_development
56
57 # Install gems and node modules
58 gem install bundler foreman
59 bundle install
60 yarn install
61
62 # Build Mastodon
63 export $(cat ".env.vagrant" | xargs)
64 bundle exec rails db:setup
65
66 # Configure automatic loading of environment variable
67 echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
68
69 SCRIPT
70
71 $start = <<SCRIPT
72
73 echo 'To start server'
74 echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
75
76 SCRIPT
77
78 VAGRANTFILE_API_VERSION = "2"
79
80 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
81
82 config.vm.box = "ubuntu/trusty64"
83
84 config.vm.provider :virtualbox do |vb|
85 vb.name = "mastodon"
86 vb.customize ["modifyvm", :id, "--memory", "2048"]
87
88 # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
89 # https://github.com/mitchellh/vagrant/issues/1172
90 vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
91 vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
92
93 # Use "virtio" network interfaces for better performance.
94 vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
95 vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
96
97 end
98
99 config.vm.hostname = "mastodon.dev"
100
101 # This uses the vagrant-hostsupdater plugin, and lets you
102 # access the development site at http://mastodon.dev.
103 # To install:
104 # $ vagrant plugin install vagrant-hostsupdater
105 if defined?(VagrantPlugins::HostsUpdater)
106 config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
107 config.hostsupdater.remove_on_suspend = false
108 end
109
110 if config.vm.networks.any? { |type, options| type == :private_network }
111 config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp']
112 else
113 config.vm.synced_folder ".", "/vagrant"
114 end
115
116 # Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
117 config.vm.network :forwarded_port, guest: 3000, host: 3000
118 config.vm.network :forwarded_port, guest: 4000, host: 4000
119 config.vm.network :forwarded_port, guest: 8080, host: 8080
120
121 # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
122 config.vm.provision :shell, inline: $provision, privileged: false
123
124 # Start up script, runs on every 'vagrant up'
125 config.vm.provision :shell, inline: $start, run: 'always', privileged: false
126
127 end
This page took 0.06898 seconds and 4 git commands to generate.