You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
3.4 KiB

  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. $provision = <<SCRIPT
  4. cd /vagrant # This is where the host folder/repo is mounted
  5. # Add the yarn repo + yarn repo keys
  6. curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
  7. sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
  8. # Add repo for NodeJS
  9. curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
  10. # Add firewall rule to redirect 80 to 3000 and save
  11. sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3000
  12. echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
  13. echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
  14. sudo apt-get install iptables-persistent -y
  15. # Add packages to build and run Mastodon
  16. sudo apt-get install \
  17. git-core \
  18. g++ \
  19. libpq-dev \
  20. libxml2-dev \
  21. libxslt1-dev \
  22. imagemagick \
  23. nodejs \
  24. redis-server \
  25. redis-tools \
  26. postgresql \
  27. postgresql-contrib \
  28. yarn \
  29. libreadline-dev \
  30. -y
  31. # Install rvm
  32. cd /vagrant
  33. read RUBY_VERSION < .ruby-version
  34. gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
  35. curl -sSL https://get.rvm.io | bash -s stable --ruby=$RUBY_VERSION
  36. source /home/vagrant/.rvm/scripts/rvm
  37. # Configure database
  38. sudo -u postgres createuser -U postgres vagrant -s
  39. sudo -u postgres createdb -U postgres mastodon_development
  40. # Install gems and node modules
  41. gem install bundler
  42. bundle install
  43. yarn install
  44. # Build Mastodon
  45. export $(cat ".env.vagrant" | xargs)
  46. bundle exec rails db:setup
  47. bundle exec rails assets:precompile
  48. SCRIPT
  49. $start = <<SCRIPT
  50. cd /vagrant
  51. export $(cat ".env.vagrant" | xargs)
  52. rails s -d -b 0.0.0.0
  53. SCRIPT
  54. VAGRANTFILE_API_VERSION = "2"
  55. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  56. config.vm.box = "ubuntu/trusty64"
  57. config.vm.provider :virtualbox do |vb|
  58. vb.name = "mastodon"
  59. vb.customize ["modifyvm", :id, "--memory", "1024"]
  60. # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
  61. # https://github.com/mitchellh/vagrant/issues/1172
  62. vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
  63. vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
  64. # Use "virtio" network interfaces for better performance.
  65. vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
  66. vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
  67. end
  68. config.vm.hostname = "mastodon.dev"
  69. # This uses the vagrant-hostsupdater plugin, and lets you
  70. # access the development site at http://mastodon.dev.
  71. # To install:
  72. # $ vagrant plugin install vagrant-hostsupdater
  73. if defined?(VagrantPlugins::HostsUpdater)
  74. config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
  75. config.hostsupdater.remove_on_suspend = false
  76. end
  77. if config.vm.networks.any? { |type, options| type == :private_network }
  78. config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp']
  79. else
  80. config.vm.synced_folder ".", "/vagrant"
  81. end
  82. # Otherwise, you can access the site at http://localhost:3000
  83. config.vm.network :forwarded_port, guest: 80, host: 3000
  84. # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
  85. config.vm.provision :shell, inline: $provision, privileged: false
  86. # Start up script, runs on every 'vagrant up'
  87. config.vm.provision :shell, inline: $start, run: 'always', privileged: false
  88. end