Skip to content

Latest commit

 

History

History
executable file
·
33 lines (22 loc) · 744 Bytes

README.md

File metadata and controls

executable file
·
33 lines (22 loc) · 744 Bytes

Website and Blog

Home of my website and blog.

Running Locally

You'll need docker for this setup to avoid having to install and setup the ruby and Jekyll dependencies.

docker compose up

This will build and serve the site to localhost:4000

Build Project

sh build-deploy.sh ./_site/

once its done building, the final project will be in the _site/ directory.

Merging Upstream

Steps to setup and merge from the upstream repo, if already done before the remote upstream should already be added.

git remote add upstream https://github.com/sergiokopplin/indigo.git
git fetch upstream
git status
git merge upstream/gh-pages
git commit -m "Merge remote-tracking branch 'upstream/gh-pages'"