Skip to content

bitsacm/bitsacm.github.io

Repository files navigation

BITS-ACM Tech Blog:

Local Development

  1. Pre-requisites - Ruby (version 2.5 or above) and RubyGems
    sudo apt-get install ruby ruby-dev build-essential
    echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
    echo 'export GEM_HOME=$HOME/gems' >> ~/.bashrc
    echo 'export PATH=$HOME/gems/bin:$PATH' >> ~/.bashrc
    source ~/.bashrc
    
  2. Install Jekyll
    gem install jekyll bundler
    
  3. Build and Run on local server to test changes
    bundle exec jekyll serve
    

Further Links