This is a Jekyll-based personal blog deployed on GitHub Pages.
- RVM (Ruby Version Manager)
- Homebrew (recommended for macOS users)
The easiest way to set up the development environment is to use the provided setup script:
# Install RVM if you don't have it
\curl -sSL https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm # Load RVM
# For macOS users, install Homebrew if you don't have it
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Run the setup script
./setup.sh
This script will:
- Check if RVM is installed
- Install Ruby 3.2.2 if needed (with proper OpenSSL configuration for macOS)
- Create a dedicated gemset for the project
- Install bundler and required gems
After setup is complete, you can run the site locally using:
./serve.sh
This will start a development server at http://localhost:4000
with live reloading enabled.
If you prefer to set up manually or encounter issues with the setup script:
-
Install Ruby 3.2.x using RVM:
\curl -sSL https://get.rvm.io | bash -s stable # Install RVM if needed source ~/.rvm/scripts/rvm # Load RVM # For macOS users brew install openssl readline libyaml # Install dependencies rvm install 3.2.2 --with-openssl-dir=$(brew --prefix openssl) # For Linux users rvm install 3.2.2 # Create and use gemset rvm use 3.2.2@personal_blog --create
-
Install bundler:
gem install bundler
-
Install dependencies:
bundle install
-
Run the site:
bundle exec jekyll serve --config _config.yml,_config_dev.yml --livereload
If you encounter issues with Ruby installation:
-
Try installing with the
--disable-binary
flag:rvm install 3.2.2 --disable-binary
-
Make sure you have the necessary dependencies:
# For macOS brew install openssl readline libyaml
-
Specify OpenSSL path explicitly:
rvm install 3.2.2 --with-openssl-dir=$(brew --prefix openssl)
Any changes you make to the site files will automatically be reflected in the browser with live reloading. This allows you to preview your changes before committing and pushing to GitHub.
The site uses two configuration files:
_config.yml
- Main configuration used in production_config_dev.yml
- Development overrides for local testing
The site is automatically deployed to GitHub Pages when changes are pushed to the main branch using the GitHub Actions workflow defined in .github/workflows/jekyll.yml
.
See the LICENSE file for more information.