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.

122 lines
3.7 KiB

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