mirror of
https://github.com/cliffe/HacktivityLabSheets.git
synced 2026-02-20 13:50:46 +00:00
- 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.
17 lines
351 B
Bash
Executable File
17 lines
351 B
Bash
Executable File
#!/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"
|