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.

111 lines
3.0 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 rbenv
  32. git clone https://github.com/rbenv/rbenv.git ~/.rbenv
  33. cd ~/.rbenv && src/configure && make -C src
  34. echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
  35. echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
  36. git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
  37. export PATH="$HOME/.rbenv/bin::$PATH"
  38. eval "$(rbenv init -)"
  39. echo "Compiling Ruby 2.3.1: warning, this takes a while!!!"
  40. rbenv install 2.3.1
  41. rbenv global 2.3.1
  42. cd /vagrant
  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
  48. bundle install
  49. yarn install
  50. # Build Mastodon
  51. bundle exec rails db:setup
  52. bundle exec rails assets:precompile
  53. SCRIPT
  54. $start = <<SCRIPT
  55. cd /vagrant
  56. export $(cat ".env.vagrant" | xargs)
  57. rails s -d -b 0.0.0.0
  58. SCRIPT
  59. VAGRANTFILE_API_VERSION = "2"
  60. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  61. config.vm.box = "ubuntu/trusty64"
  62. config.vm.provider :virtualbox do |vb|
  63. vb.name = "mastodon"
  64. vb.customize ["modifyvm", :id, "--memory", "1024"]
  65. end
  66. config.vm.hostname = "mastodon.dev"
  67. # This uses the vagrant-hostsupdater plugin, and lets you
  68. # access the development site at http://mastodon.dev.
  69. # To install:
  70. # $ vagrant plugin install hostsupdater
  71. if defined?(VagrantPlugins::HostsUpdater)
  72. config.vm.network :private_network, ip: "192.168.42.42"
  73. config.hostsupdater.remove_on_suspend = false
  74. end
  75. config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp']
  76. # Otherwise, you can access the site at http://localhost:3000
  77. config.vm.network :forwarded_port, guest: 80, host: 3000
  78. # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
  79. config.vm.provision :shell, inline: $provision, privileged: false
  80. # Start up script, runs on every 'vagrant up'
  81. config.vm.provision :shell, inline: $start, run: 'always', privileged: false
  82. end