2.7 KiB
🏡 jarv.is
Personal website of @jakejarvis, created and deployed using the following:
I keep an ongoing list of blog post ideas and coding to-dos as issues in this repo.
Running a local testing server
Using Hugo:
Run yarn install
then yarn start
(Yarn must be installed first), then open http://localhost:1313/. Pages will live-refresh when source files are changed.
Using Docker:
To ensure consistency and compatibility, the Dockerfile
in this repository will download the Hugo Extended binary and its dependencies, and start a live testing server.
Simply run yarn serve:docker
or build and run manually with:
docker build -t jarv.is:develop -f Dockerfile .
docker run -v $(pwd):/src -p 1313:1313 jarv.is:develop
...then open http://localhost:1313/ as above.
Licenses
Site content (everything in content/notes
) is published under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), which means that you can copy, redistribute, remix, transform, and build upon the content for any purpose as long as you give appropriate credit.
All code in this repository (like my Hugo theme) is published under the MIT license.