aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/bootstrap.sh
blob: 14c42f31534a11a05e23fbe30bc81bf0ef7143b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

pacman -Suyq --noconfirm
pacman -Sq ruby gcc make sqlite3 nodejs --noconfirm
echo "export GEM_HOME=`gem env gemdir`" > /etc/profile.d/rubygems.sh
source /etc/profile.d/rubygems.sh
gem install bundler --no-rdoc --no-ri --no-user-install
cd /vagrant
./script/setup
cp vagrant/rails.service /usr/lib/systemd/system
systemctl enable rails
systemctl start rails