The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

128 lines
3.7 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. cd /vagrant
  40. read RUBY_VERSION < .ruby-version
  41. echo "Compiling Ruby $RUBY_VERSION: warning, this takes a while!!!"
  42. rbenv install $RUBY_VERSION
  43. rbenv global $RUBY_VERSION
  44. # Configure database
  45. sudo -u postgres createuser -U postgres vagrant -s
  46. sudo -u postgres createdb -U postgres mastodon_development
  47. # Install gems and node modules
  48. gem install bundler
  49. bundle install
  50. yarn install
  51. # Build Mastodon
  52. export $(cat ".env.vagrant" | xargs)
  53. bundle exec rails db:setup
  54. bundle exec rails assets:precompile
  55. SCRIPT
  56. $start = <<SCRIPT
  57. cd /vagrant
  58. export $(cat ".env.vagrant" | xargs)
  59. rails s -d -b 0.0.0.0
  60. SCRIPT
  61. VAGRANTFILE_API_VERSION = "2"
  62. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  63. config.vm.box = "ubuntu/trusty64"
  64. config.vm.provider :virtualbox do |vb|
  65. vb.name = "mastodon"
  66. vb.customize ["modifyvm", :id, "--memory", "1024"]
  67. # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
  68. # https://github.com/mitchellh/vagrant/issues/1172
  69. vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
  70. vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
  71. # Use "virtio" network interfaces for better performance.
  72. vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
  73. vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
  74. end
  75. config.vm.hostname = "mastodon.dev"
  76. # This uses the vagrant-hostsupdater plugin, and lets you
  77. # access the development site at http://mastodon.dev.
  78. # To install:
  79. # $ vagrant plugin install vagrant-hostsupdater
  80. if defined?(VagrantPlugins::HostsUpdater)
  81. config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
  82. config.hostsupdater.remove_on_suspend = false
  83. end
  84. if config.vm.networks.any? { |type, options| type == :private_network }
  85. config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp']
  86. else
  87. config.vm.synced_folder ".", "/vagrant"
  88. end
  89. # Otherwise, you can access the site at http://localhost:3000
  90. config.vm.network :forwarded_port, guest: 80, host: 3000
  91. # Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
  92. config.vm.provision :shell, inline: $provision, privileged: false
  93. # Start up script, runs on every 'vagrant up'
  94. config.vm.provision :shell, inline: $start, run: 'always', privileged: false
  95. end