Skip to content

adimail/classroom

Repository files navigation

Classroom by adimail

what is this?

Static site with a collection of notes from my BTech.

Run locally

Before you begin, ensure you have the following installed:

  • Ruby (version 3.0.0 or higher)
  • RubyGems
  • Bundler
  • Git

macOS

brew install rbenv
rbenv init
rbenv install 3.2.0
rbenv global 3.2.0

Ubuntu/Debian

sudo apt-get update
sudo apt-get install -y build-essential libssl-dev libreadline-dev zlib1g-dev
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/main/bin/rbenv-installer | bash
rbenv install 3.2.0
rbenv global 3.2.0

Windows

Download and install Ruby using the RubyInstaller.

Install Bundler

After installing Ruby, install Bundler:

gem install bundler

Install Project Dependencies

bundle install

Run the Project

bundle exec jekyll serve

Open your web browser and navigate to http://localhost:4000 to see the Jekyll site in action.