Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 959 Bytes

File metadata and controls

25 lines (22 loc) · 959 Bytes

Purpose

This repository contains the blog, theme and source files needed to build the static site hosted at https://darrylcauldwell.github.io.

Usage Steps

  1. If not already added install Hugo
  2. Clone the repository
git clone https://github.com/darrylcauldwell/darrylcauldwell.github.io.git
  1. Switch to repository and start Hugo
cd darrylcauldwell.github.io
hugo server
  1. Browser to locally running copy of site typically http://localhost:1313/
  2. Add or edit any aspect typically within /content/post
  3. The content changes will dynamically update the ocally running copy of site
  4. Once your happy with changes build static files, the following command will create static site files in /public
hugo --destination ~/Development/darrylcauldwell.github.io/docs
  1. Git commit and push all changes
  2. Check to ensure https://darrylcauldwell.github.io reflects changes made