Personal portfolio website powered by Jekyll with Hydejack theme.
Live Site: https://jyje.online
- Resume and Projects pages with PDF download support
- Automatic PDF generation during CI/CD
- Korean and English language support
- Blog posts, certifications, and works showcase
- Ruby 3.3+
- Node.js 20+
- Bundler
# Install Ruby dependencies
bundle install
# Update dependencies
bundle update --bundler
# Install Node.js dependencies
npm install
# Update Node.js dependencies
npm update
# Install Bower dependencies (for KaTeX and MathJax)
cd assets && npx bower install && cd ..
# Start local development server
bundle exec jekyll serve --force_polling --livereloadThe site will be available at http://localhost:4000.
Resume and project portfolio PDFs are automatically generated during deployment when relevant files change.
PDF generation is configured via pdf-config.yml at the project root:
# PDF targets to generate
targets:
- path: /profile/resume
output: jyje-resume-en.pdf
title: "Resume - Jeayoung Jeon"
# ... more targets
# PDF options (format, margins, etc.)
pdf_options:
format: A4
margin:
top: 16mm
# ...To generate PDFs locally:
# 1. First, build the Jekyll site
bundle exec jekyll build
# 2. Install Playwright browser (first time only)
npx playwright install chromium
# 3. Generate PDFs
npm run generate-pdfPDFs will be created in the assets/ directory (as configured in pdf-config.yml).
PDFs are automatically generated during GitHub Actions deployment when changes are detected in:
pdf-config.yml- PDF configuration_data/resume*.ymlor_data/projects*.ymlprofile/pages_layouts/resume.htmlor_layouts/projects*.html_includes/pro/resume/templates_sass/stylesheetsscripts/generate-pdf.js
To force PDF regeneration, use the "Run workflow" button in GitHub Actions with the "Force PDF generation" option enabled.
# Production build
JEKYLL_ENV=production bundle exec jekyll build
# Build JavaScript/CSS assets
npm run buildThis project uses Bower to manage frontend dependencies (KaTeX, MathJax). These dependencies are automatically installed during CI/CD, but you need to install them manually for local development:
# Install Bower dependencies
cd assets && npx bower install && cd ..
# Or from project root
cd assets
npx bower install
cd ..Note: assets/bower_components/ is gitignored and will be automatically installed during CI/CD builds. You don't need to commit these files.
This project uses the Hydejack theme.