πŸš€ Quick Start Guide - Ali’s Jekyll Website

🎯 Easy Launch Methods

.\launch_website.ps1

Method 2: Batch File (Simple)

.\quick_start.bat

Method 3: Manual Commands

# Add Ruby to PATH
$env:PATH = "C:\Ruby34-x64\bin;" + $env:PATH

# Install gems
bundle install

# Start website
$env:TZ = "UTC"; bundle exec jekyll serve --port 4000 --livereload

πŸ“ Access Your Website

πŸ›‘ Stop the Server

Press Ctrl + C in the terminal

πŸ”§ Troubleshooting

If Ruby is not found:

  1. Make sure Ruby is installed at C:\Ruby34-x64\bin
  2. Or install Ruby from: https://rubyinstaller.org/downloads/

If gems fail to install:

bundle update
bundle install

If timezone errors occur:

gem install tzinfo-data

πŸ“ Recent Changes (August 17, 2025)

🎨 Card Design Updates


Happy coding! πŸŽ‰

Loading...