Set up GitHub Pages compatibility with new Gemfile and scripts

- Updated Gemfile for GitHub Pages compatibility, including necessary gems.
- Added Gemfile.github-pages for specific GitHub Pages dependencies.
- Created scripts to switch between GitHub Pages and local development setups.
- Introduced GitHub Actions workflow for building and deploying the Jekyll site to GitHub Pages.
This commit is contained in:
Z. Cliffe Schreuders
2025-09-15 23:33:11 +01:00
parent 3d9029a200
commit 94d4f3b74a
5 changed files with 129 additions and 3 deletions

16
switch-to-local-dev.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Script to switch back to local development setup
echo "Switching to local development setup..."
# Use local development Gemfile
cp Gemfile.local-dev Gemfile
echo "✅ Switched to local development setup"
echo ""
echo "To install dependencies:"
echo " bundle install"
echo ""
echo "To run locally:"
echo " bundle exec jekyll serve"