Skip to content

Catch-up-TV-and-More/Catch-up-TV-and-More.github.io

Repository files navigation

Catch-up TV & More website

This repository contains Catch-up TV & More official website on master branch and Jekyll source files allowing of build the website on jekyll-source branch.

How to modify the website

  1. Install Bundler and Jekyll on your local machine
gem install bundler jekyll
  1. Clone this repository and move into jekyll-source branch
git clone https://github.com/Catch-up-TV-and-More/Catch-up-TV-and-More.github.io
git checkout jekyll-source
  1. Install dependences
bundle install
  1. Modify whatever you want

  2. Make the website available on a local server to check your changes on http://127.0.0.1:4000/

bundle exec jekyll serve
  1. Once everything is ok for you, push your changes
git add --all
git commit -m "Update Website"
git push
  1. Wait a little so that a GitHub action workflow will build the website on https://catch-up-tv-and-more.github.io

Notes

  • Do not push anything on master branch because the GitHub action workflow that build the website from jekyll-source branch perform a push force on master branch
  • The GitHub action workflow that build the website is triggered on each push on jekyll-source branch