mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:38:26 -04:00
39 lines
2.6 KiB
Markdown
39 lines
2.6 KiB
Markdown
# 🏡 [jarv.is](https://jarv.is/)
|
|
|
|
[](.github/workflows) [](https://github.com/jakejarvis/jarv.is) [](LICENSE.md)
|
|
|
|
Personal website of [@jakejarvis](https://github.com/jakejarvis), created and deployed using the following:
|
|
|
|
- [Hugo extended](https://github.com/gohugoio/hugo)
|
|
- [GitHub Pages](https://pages.github.com/)
|
|
- [GitHub Actions](.github/workflows)
|
|
- [Commento](https://gitlab.com/commento/commento)
|
|
- [Matomo](https://matomo.org/)
|
|
|
|
I keep an ongoing list of [blog post ideas](https://github.com/jakejarvis/jarv.is/issues/1) as an issue in this repo.
|
|
|
|
|
|
## Running a local testing server with Docker
|
|
|
|
This site runs a [custom version](https://github.com/jakejarvis/hugo-custom) of [Hugo Extended](https://github.com/gohugoio/hugo) with a few (very opinionated) changes. To ensure consistency, the [`Dockerfile`](Dockerfile) in this repository will pull my Hugo [fork](https://github.com/jakejarvis/hugo-custom) (forked from `v0.53-DEV`, [gohugo/hugo@`a28865c`](https://github.com/gohugoio/hugo/tree/a28865cfc3e296cf0ddd0bd6c1368fcdb2154d0f) and pre-built [on GitHub Package Registry](https://github.com/jakejarvis/hugo-custom/packages)) and run a live testing server.
|
|
|
|
Run these commands on the root of this repository:
|
|
|
|
```bash
|
|
docker build -t jarv.is:develop -f Dockerfile .
|
|
docker run -v $(pwd):/src -p 1313:1313 jarv.is:develop
|
|
```
|
|
|
|
...then open [http://localhost:1313/](http://localhost:1313/). Pages will live-refresh when source files are changed.
|
|
|
|
|
|
## Licenses
|
|
|
|

|
|
|
|
Site content (everything in [`content/notes`](content/notes/)) is published under the [Creative Commons Attribution 4.0 International License](LICENSE.md) (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](layouts/)) is published under the [MIT license](https://opensource.org/licenses/MIT), except the customized Hugo fork in the [`Dockerfile`](Dockerfile) which retains Hugo's [original Apache-2.0 license](https://github.com/gohugoio/hugo/blob/master/LICENSE).
|
|
|
|
Everything else (such as the press articles and videos in [`misc`](misc/)) belongs to its respective owner(s) under the original license/copyright.
|