2017-01-07 12:22:24 +00:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2017-05-04 02:36:36 +00:00
|
|
|
ENV["PORT"] ||= "3000"
|
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
$provisionA = <<SCRIPT
|
2017-01-07 12:22:24 +00:00
|
|
|
|
2017-01-08 01:38:04 +00:00
|
|
|
# Add the yarn repo + yarn repo keys
|
|
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
|
|
|
sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
|
|
|
|
|
2017-01-07 12:22:24 +00:00
|
|
|
# Add repo for NodeJS
|
2023-11-30 10:46:06 +00:00
|
|
|
sudo mkdir -p /etc/apt/keyrings
|
|
|
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
|
|
NODE_MAJOR=20
|
|
|
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
|
|
|
|
sudo apt-get update
|
2017-01-07 12:22:24 +00:00
|
|
|
|
2017-05-04 02:36:36 +00:00
|
|
|
# Add firewall rule to redirect 80 to PORT and save
|
|
|
|
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port #{ENV["PORT"]}
|
2017-01-07 12:22:24 +00:00
|
|
|
echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
|
|
|
|
echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
|
|
|
|
sudo apt-get install iptables-persistent -y
|
|
|
|
|
|
|
|
# Add packages to build and run Mastodon
|
|
|
|
sudo apt-get install \
|
|
|
|
git-core \
|
2017-01-12 12:20:55 +00:00
|
|
|
g++ \
|
2017-01-07 12:22:24 +00:00
|
|
|
libpq-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
libxslt1-dev \
|
|
|
|
imagemagick \
|
|
|
|
nodejs \
|
|
|
|
redis-server \
|
|
|
|
redis-tools \
|
|
|
|
postgresql \
|
|
|
|
postgresql-contrib \
|
2017-07-17 22:31:43 +00:00
|
|
|
libicu-dev \
|
|
|
|
libidn11-dev \
|
2022-12-06 23:13:14 +00:00
|
|
|
libreadline6-dev \
|
|
|
|
autoconf \
|
|
|
|
bison \
|
|
|
|
build-essential \
|
|
|
|
ffmpeg \
|
|
|
|
file \
|
|
|
|
gcc \
|
|
|
|
libffi-dev \
|
|
|
|
libgdbm-dev \
|
|
|
|
libjemalloc-dev \
|
|
|
|
libncurses5-dev \
|
|
|
|
libprotobuf-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libyaml-dev \
|
|
|
|
pkg-config \
|
|
|
|
protobuf-compiler \
|
|
|
|
zlib1g-dev \
|
2017-01-07 12:22:24 +00:00
|
|
|
-y
|
|
|
|
|
2017-04-23 12:21:20 +00:00
|
|
|
# Install rvm
|
2022-12-06 23:13:14 +00:00
|
|
|
sudo apt-add-repository -y ppa:rael-gc/rvm
|
|
|
|
sudo apt-get install rvm -y
|
2019-03-10 15:00:22 +00:00
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
sudo usermod -a -G rvm $USER
|
|
|
|
|
|
|
|
SCRIPT
|
2019-03-10 15:00:22 +00:00
|
|
|
|
2023-08-23 13:46:14 +00:00
|
|
|
$provisionElasticsearch = <<SCRIPT
|
|
|
|
# Install Elastic Search
|
|
|
|
sudo apt install openjdk-17-jre-headless -y
|
|
|
|
sudo wget -O /usr/share/keyrings/elasticsearch.asc https://artifacts.elastic.co/GPG-KEY-elasticsearch
|
|
|
|
sudo sh -c 'echo "deb [signed-by=/usr/share/keyrings/elasticsearch.asc] https://artifacts.elastic.co/packages/7.x/apt stable main" > /etc/apt/sources.list.d/elastic-7.x.list'
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install elasticsearch -y
|
|
|
|
|
|
|
|
sudo systemctl daemon-reload
|
|
|
|
sudo systemctl enable --now elasticsearch
|
|
|
|
|
|
|
|
echo 'path.data: /var/lib/elasticsearch
|
|
|
|
path.logs: /var/log/elasticsearch
|
|
|
|
network.host: 0.0.0.0
|
|
|
|
http.port: 9200
|
|
|
|
discovery.seed_hosts: ["localhost"]
|
2023-09-08 14:17:55 +00:00
|
|
|
cluster.initial_master_nodes: ["node-1"]
|
|
|
|
xpack.security.enabled: false' > /etc/elasticsearch/elasticsearch.yml
|
2023-08-23 13:46:14 +00:00
|
|
|
|
|
|
|
sudo systemctl restart elasticsearch
|
|
|
|
|
|
|
|
# Install Kibana
|
|
|
|
sudo apt install kibana -y
|
|
|
|
sudo systemctl enable --now kibana
|
|
|
|
|
|
|
|
echo 'server.host: "0.0.0.0"
|
|
|
|
elasticsearch.hosts: ["http://localhost:9200"]' > /etc/kibana/kibana.yml
|
|
|
|
|
|
|
|
sudo systemctl restart kibana
|
|
|
|
|
|
|
|
SCRIPT
|
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
$provisionB = <<SCRIPT
|
|
|
|
|
|
|
|
source "/etc/profile.d/rvm.sh"
|
2017-04-11 13:06:07 +00:00
|
|
|
|
2017-06-22 16:35:27 +00:00
|
|
|
# Install Ruby
|
2022-12-06 23:13:14 +00:00
|
|
|
read RUBY_VERSION < /vagrant/.ruby-version
|
|
|
|
rvm install ruby-$RUBY_VERSION --disable-binary
|
2017-06-22 16:35:27 +00:00
|
|
|
|
2017-01-07 12:22:24 +00:00
|
|
|
# Configure database
|
|
|
|
sudo -u postgres createuser -U postgres vagrant -s
|
|
|
|
sudo -u postgres createdb -U postgres mastodon_development
|
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
cd /vagrant # This is where the host folder/repo is mounted
|
|
|
|
|
|
|
|
# Install gems
|
2017-05-04 02:39:50 +00:00
|
|
|
gem install bundler foreman
|
2017-01-07 12:22:24 +00:00
|
|
|
bundle install
|
2022-12-06 23:13:14 +00:00
|
|
|
|
|
|
|
# Install node modules
|
|
|
|
sudo corepack enable
|
2023-11-08 10:57:21 +00:00
|
|
|
corepack prepare
|
2017-01-07 12:22:24 +00:00
|
|
|
yarn install
|
|
|
|
|
|
|
|
# Build Mastodon
|
2023-11-08 10:57:21 +00:00
|
|
|
export RAILS_ENV=development
|
2017-04-23 12:21:09 +00:00
|
|
|
export $(cat ".env.vagrant" | xargs)
|
2017-01-07 12:22:24 +00:00
|
|
|
bundle exec rails db:setup
|
2017-05-04 02:39:50 +00:00
|
|
|
|
|
|
|
# Configure automatic loading of environment variable
|
2021-02-11 21:58:39 +00:00
|
|
|
echo 'export RAILS_ENV=development' >> ~/.bash_profile
|
2017-05-04 02:39:50 +00:00
|
|
|
echo 'export $(cat "/vagrant/.env.vagrant" | xargs)' >> ~/.bash_profile
|
2017-01-07 12:22:24 +00:00
|
|
|
|
|
|
|
SCRIPT
|
|
|
|
|
|
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
config.vm.box = "ubuntu/focal64"
|
2017-01-07 12:22:24 +00:00
|
|
|
|
|
|
|
config.vm.provider :virtualbox do |vb|
|
|
|
|
vb.name = "mastodon"
|
2023-08-23 13:46:14 +00:00
|
|
|
vb.customize ["modifyvm", :id, "--memory", "8192"]
|
|
|
|
vb.customize ["modifyvm", :id, "--cpus", "3"]
|
2017-04-06 20:34:59 +00:00
|
|
|
|
|
|
|
# Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
|
|
|
|
# https://github.com/mitchellh/vagrant/issues/1172
|
|
|
|
vb.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
|
|
|
|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
|
|
|
|
|
|
|
|
# Use "virtio" network interfaces for better performance.
|
|
|
|
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
|
|
|
|
vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
|
2017-01-07 12:22:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# This uses the vagrant-hostsupdater plugin, and lets you
|
2018-09-16 18:49:15 +00:00
|
|
|
# access the development site at http://mastodon.local.
|
|
|
|
# If you change it, also change it in .env.vagrant before provisioning
|
|
|
|
# the vagrant server to update the development build.
|
|
|
|
#
|
2017-01-07 12:22:24 +00:00
|
|
|
# To install:
|
2017-04-06 20:34:59 +00:00
|
|
|
# $ vagrant plugin install vagrant-hostsupdater
|
2018-09-16 18:49:15 +00:00
|
|
|
config.vm.hostname = "mastodon.local"
|
|
|
|
|
2017-01-07 12:22:24 +00:00
|
|
|
if defined?(VagrantPlugins::HostsUpdater)
|
2017-04-06 20:34:59 +00:00
|
|
|
config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
|
2017-01-07 12:22:24 +00:00
|
|
|
config.hostsupdater.remove_on_suspend = false
|
|
|
|
end
|
|
|
|
|
2017-04-17 08:40:14 +00:00
|
|
|
if config.vm.networks.any? { |type, options| type == :private_network }
|
2022-12-06 23:13:14 +00:00
|
|
|
config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'actimeo=1']
|
2017-04-17 08:40:14 +00:00
|
|
|
else
|
|
|
|
config.vm.synced_folder ".", "/vagrant"
|
|
|
|
end
|
2017-04-05 18:53:39 +00:00
|
|
|
|
2017-05-04 02:39:50 +00:00
|
|
|
# Otherwise, you can access the site at http://localhost:3000 and http://localhost:4000 , http://localhost:8080
|
|
|
|
config.vm.network :forwarded_port, guest: 3000, host: 3000
|
|
|
|
config.vm.network :forwarded_port, guest: 4000, host: 4000
|
|
|
|
config.vm.network :forwarded_port, guest: 8080, host: 8080
|
2023-08-23 13:46:14 +00:00
|
|
|
config.vm.network :forwarded_port, guest: 9200, host: 9200
|
|
|
|
config.vm.network :forwarded_port, guest: 9300, host: 9300
|
|
|
|
config.vm.network :forwarded_port, guest: 9243, host: 9243
|
|
|
|
config.vm.network :forwarded_port, guest: 5601, host: 5601
|
2017-01-07 14:28:49 +00:00
|
|
|
|
2017-01-07 12:22:24 +00:00
|
|
|
# Full provisioning script, only runs on first 'vagrant up' or with 'vagrant provision'
|
2022-12-06 23:13:14 +00:00
|
|
|
config.vm.provision :shell, inline: $provisionA, privileged: false, reset: true
|
2023-08-23 13:46:14 +00:00
|
|
|
# Run with elevated privileges for Elasticsearch installation
|
|
|
|
config.vm.provision :shell, inline: $provisionElasticsearch, privileged: true
|
2022-12-06 23:13:14 +00:00
|
|
|
config.vm.provision :shell, inline: $provisionB, privileged: false
|
2017-01-07 12:22:24 +00:00
|
|
|
|
2022-12-06 23:13:14 +00:00
|
|
|
config.vm.post_up_message = <<MESSAGE
|
|
|
|
To start server
|
2024-03-02 18:31:43 +00:00
|
|
|
$ vagrant ssh -c "cd /vagrant && bin/dev"
|
2022-12-06 23:13:14 +00:00
|
|
|
MESSAGE
|
2017-01-07 12:22:24 +00:00
|
|
|
|
|
|
|
end
|