University of Maryland Libraries Open Data Website, built using the Hugo static site generator.
Install go-task.
# Intall using Homebrew
brew install task
# Install using golang
go install github.com/go-task/task/v3/cmd/task@latestBuild and serve the website using hugo:
task serve
open http://localhost:1314/For more information see Hugo CLI docs.
Set up a Python environment to run the code examples, using pyenv and venv.
# Setup the Python version
pyenv install --skip-existing $(cat .python-version)
# Setup the virtual environment
python -m venv .venv
source .venv/bin/activate
# Install the requirements
pip install -r requirements.txt