File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 11# BITS-ACM Tech Blog:
22* Made with Jekyll and Markdown
33* Link: https://bitsacm.github.io
4+
5+ #### Local Development
6+
7+ 1 . Pre-requisites - Ruby (version 2.5 or above) and RubyGems
8+ ```
9+ sudo apt-get install ruby ruby-dev build-essential
10+ echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
11+ echo 'export GEM_HOME=$HOME/gems' >> ~/.bashrc
12+ echo 'export PATH=$HOME/gems/bin:$PATH' >> ~/.bashrc
13+ source ~/.bashrc
14+ ```
15+ 2. Install Jekyll
16+ ```
17+ gem install jekyll bundler
18+ ```
19+ 3. Build and Run on local server to test changes
20+ ```
21+ bundle exec jekyll serve
22+ ```
23+ Further Links
24+ - [Jekyll Quick Start Guide](https://jekyllrb.com/docs/quickstart/)
25+ - Complete guide for [Ubuntu](https://jekyllrb.com/docs/installation/#ubuntu) and [macOS](https://jekyllrb.com/docs/installation/#macOS)
26+ - How to setup on [Windows](https://jekyllrb.com/docs/windows/)
You can’t perform that action at this time.
0 commit comments