A personal web site where Ramesh shares his views, thoughts and experiences.
- Github Pages [↗]
- Jekyll [↗]
- Github Discussions with Giscus
- Install Ruby version >2.6
- Prefer using rbenv, rvm or chruby & ruby-install
- For chruby & ruby install, follow below steps
brew install chruby ruby-install
- Follow the post install steps from brew to add chruby source
ruby-install ruby
chruby <version of ruby installed in previous step>
- or with in project folder run
echo <ruby version> > .ruby-version
- Enure you have proper versions of
gem
,gcc
&make
- Update
.zshrc
or.bashrc
to install gems to user folderssh # Ruby exports export GEM_HOME=$HOME/gems export PATH=$HOME/gems/bin:$PATH
- Install
Jekyll
&bundler
by runninggem install jekyll bundler
- Install dependencies
bundle install
- To run the website locally
bundle exec jekyll serve
. with draftsbundle exec jekyll serve --draft