Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stlaz/stlaz.github.io
https://github.com/stlaz/stlaz.github.io
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stlaz/stlaz.github.io
- Owner: stlaz
- License: gpl-3.0
- Created: 2023-11-16T09:27:11.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-29T13:03:26.000Z (8 months ago)
- Last Synced: 2024-02-29T14:27:56.754Z (8 months ago)
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## What's this
This repository contains data for my GitHub pages. All content is to be found in the
`gh-pages` branch.## Creating the pages
I followed the instructions in https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll#creating-your-site
Since I'm not a big Ruby fan, I used the jekyll/jekyll container from DockerHub.
Running it is a bit odd but by following https://github.com/envygeeks/jekyll-docker/blob/master/README.md#quick-start-under-linux--git-bash
I ended up with this:```bash
docker run -v $(pwd):/srv/jekyll --rm -ti jekyll/jekyll -- bash
# the following commands are run from inside of the container
chown -R jekyll /usr/gem/
cd /srv/jekyll/
jekyll new --skip-bundle .
```Then, following both the `_config.yml` and the steps around 8 from the aforementioned GitHub guide,
I modified the config a bit in `vim` from a different terminal, and then, again from the container,
run:```bash
bundle install
```