Updated Vagrantfile

This commit is contained in:
Zachary Klosko 2020-07-02 16:49:28 -04:00
parent 39d8947d4a
commit 3374b6ca75
4 changed files with 1 additions and 20 deletions

View file

@ -1,18 +0,0 @@
# Installing Jekyll
echo "Installing Ruby"
sudo apt-get install ruby-full build-essential zlib1g-dev
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
echo "Installing Jekyll"
cd docs
gem install jekyll bundler
# Running Jekyll
bundle exec jekyll serve --watch --port 8888
echo "Visit http://localhost:8888 to see the LibreTime website."