You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Jack Jackson c5b2875fdd PVC Debug Pod entry 2 weeks ago
blog PVC Debug Pod entry 2 weeks ago
.drone.yml Update to books-wrap-up to actually publish 3 months ago
.gitignore Remove and .gitignore `resources` directory 2 years ago
.gitmodules first commit 2 years ago
Dockerfile Remove nginx.conf 1 year ago
README.md Add README with installation instructions 2 years ago

README.md

Installation

  • Install hugo (if you have set up your pi with pi-tools, this will already be done):
    • latestHugoVersion=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases | jq -r '.[] | .tag_name' | perl -pe 's/^v//' | sort -V | tail -n 1)
    • wget -q -O /tmp/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${latestHugoVersion}/hugo_${latestHugoVersion}_Linux-ARM.deb
    • sudo apt install /tmp/hugo.deb
  • git submodule init && git submodule update --recursive

Use

Content is stored in blog/. All hugo commands below should be executed from there. This top-level directory is just for package metadata, README.md, etc.

  • To create a new post, run hugo new posts/<name>.md (or, run np.sh <name> from the root directory)
  • To start a local server to check how it looks, run hugo server (with -D to show drafts)