mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 18:50:29 -04:00
40 lines
2.6 KiB
Markdown
40 lines
2.6 KiB
Markdown
# 🏡 [jarv.is](https://jarv.is/)
|
|
|
|
[](https://app.netlify.com/sites/jakejarvis/deploys) [](https://jarv.is/) [](https://github.com/gohugoio/hugo) [](https://github.com/jakejarvis/jarv.is/pulls?q=is%3Apr+label%3Adependencies) [](https://github.com/jakejarvis/jarv.is) [](LICENSE.md) [](https://twitter.com/intent/user?screen_name=jakejarvis)
|
|
|
|
|
|
Personal website of [@jakejarvis](https://github.com/jakejarvis), created and deployed using the following:
|
|
|
|
- [Hugo extended](https://github.com/gohugoio/hugo)
|
|
- [Netlify](https://www.netlify.com/)
|
|
- [Commento](https://gitlab.com/commento/commento)
|
|
|
|
I keep an ongoing list of [blog post ideas](https://github.com/jakejarvis/jarv.is/issues/1) and [coding to-dos](https://github.com/jakejarvis/jarv.is/issues/11) as issues in this repo.
|
|
|
|
|
|
## Running a local testing server
|
|
|
|
#### Using Hugo:
|
|
|
|
Run `yarn install` then `yarn start` ([Yarn must be installed](https://yarnpkg.com/en/docs/install) first), then open [http://localhost:1313/](http://localhost:1313/). Pages will live-refresh when source files are changed.
|
|
|
|
#### Using Docker:
|
|
|
|
To ensure consistency and compatibility, the [`Dockerfile`](Dockerfile) in this repository will download the Hugo Extended binary and its dependencies, and start a live testing server.
|
|
|
|
```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/) as above.
|
|
|
|
|
|
## 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).
|