π Quick Start Guide - Aliβs Jekyll Website
π― Easy Launch Methods
Method 1: PowerShell Script (Recommended)
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
- Local URL: http://localhost:4000
- Network URL: http://0.0.0.0:4000
π Stop the Server
Press Ctrl + C in the terminal
π§ Troubleshooting
If Ruby is not found:
- Make sure Ruby is installed at
C:\Ruby34-x64\bin
- Or install Ruby from: https://rubyinstaller.org/downloads/
If gems fail to install:
bundle update
bundle install
If timezone errors occur:
π Recent Changes (August 17, 2025)
- β
Fixed timezone issues on Windows
- β
Removed problematic
wdm gem
- β
Added
tzinfo-data for Windows compatibility
- β
Updated card designs for better text clarity
- β
Removed blur effects for improved readability
π¨ Card Design Updates
- Clear black transparent backgrounds
- Bright white text without shadows
- Removed blur effects
- Enhanced hover animations
- Better mobile responsiveness
Happy coding! π