Vagrantfile 4.2 KB

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