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.

145 lines
4.5 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_10.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. libicu-dev \
  32. libidn11-dev \
  33. libprotobuf-dev \
  34. libreadline-dev \
  35. libpam0g-dev \
  36. -y
  37. # Install rvm
  38. read RUBY_VERSION < .ruby-version
  39. gpg_command="gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB"
  40. $($gpg_command)
  41. if [ $? -ne 0 ];then
  42. echo "GPG command failed, This prevented RVM from installing."
  43. echo "Retrying once..." && $($gpg_command)
  44. if [ $? -ne 0 ];then
  45. echo "GPG failed for the second time, please ensure network connectivity."
  46. echo "Exiting..." && exit 1
  47. fi
  48. fi
  49. curl -sSL https://raw.githubusercontent.com/rvm/rvm/stable/binscripts/rvm-installer | bash -s stable --ruby=$RUBY_VERSION
  50. source /home/vagrant/.rvm/scripts/rvm
  51. # Install Ruby
  52. rvm reinstall ruby-$RUBY_VERSION --disable-binary
  53. # Configure database
  54. sudo -u postgres createuser -U postgres vagrant -s
  55. sudo -u postgres createdb -U postgres mastodon_development
  56. # Install gems and node modules
  57. gem install bundler foreman
  58. bundle install
  59. yarn install
  60. # Build Mastodon
  61. export $(cat ".env.vagrant" | xargs)
  62. bundle exec rails db:setup
  63. # Configure automatic loading of environment variable
  64. echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
  65. SCRIPT
  66. $start = <<SCRIPT
  67. echo 'To start server'
  68. echo ' $ vagrant ssh -c "cd /vagrant && foreman start"'
  69. SCRIPT
  70. VAGRANTFILE_API_VERSION = "2"
  71. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  72. config.vm.box = "ubuntu/bionic64"
  73. config.vm.provider :virtualbox do |vb|
  74. vb.name = "mastodon"
  75. vb.customize ["modifyvm", :id, "--memory", "2048"]
  76. # Increase the number of CPUs. Uncomment and adjust to
  77. # increase performance
  78. # vb.customize ["modifyvm", :id, "--cpus", "3"]
  79. # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
  80. # https://github.com/mitchellh/vagrant/issues/1172
  81. vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
  82. vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
  83. # Use "virtio" network interfaces for better performance.
  84. vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
  85. vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
  86. end
  87. # This uses the vagrant-hostsupdater plugin, and lets you
  88. # access the development site at http://mastodon.local.
  89. # If you change it, also change it in .env.vagrant before provisioning
  90. # the vagrant server to update the development build.
  91. #
  92. # To install:
  93. # $ vagrant plugin install vagrant-hostsupdater
  94. config.vm.hostname = "mastodon.local"
  95. if defined?(VagrantPlugins::HostsUpdater)
  96. config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
  97. config.hostsupdater.remove_on_suspend = false
  98. end
  99. if config.vm.networks.any? { |type, options| type == :private_network }
  100. config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'actimeo=1']
  101. else
  102. config.vm.synced_folder ".", "/vagrant"
  103. end
  104. # Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
  105. config.vm.network :forwarded_port, guest: 3000, host: 3000
  106. config.vm.network :forwarded_port, guest: 4000, host: 4000
  107. config.vm.network :forwarded_port, guest: 8080, host: 8080
  108. # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
  109. config.vm.provision :shell, inline: $provision, privileged: false
  110. # Start up script, runs on every 'vagrant up'
  111. config.vm.provision :shell, inline: $start, run: 'always', privileged: false
  112. end