File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1
1
# BITS-ACM Tech Blog:
2
2
* Made with Jekyll and Markdown
3
3
* 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