Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruzickap/ruzickap.github.io
blog.ruzicka.dev - personal blog 🏠
https://github.com/ruzickap/ruzickap.github.io
github github-actions jekyll markdown personal-website website
Last synced: 2 months ago
JSON representation
blog.ruzicka.dev - personal blog 🏠
- Host: GitHub
- URL: https://github.com/ruzickap/ruzickap.github.io
- Owner: ruzickap
- License: apache-2.0
- Created: 2021-12-23T06:43:37.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T17:15:05.000Z (8 months ago)
- Last Synced: 2024-05-22T17:16:08.772Z (8 months ago)
- Topics: github, github-actions, jekyll, markdown, personal-website, website
- Language: Shell
- Homepage: https://ruzickap.github.io/
- Size: 6.51 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ruzickap.github.io
[![GitHub Actions status - Lint Code Base](https://github.com/ruzickap/ruzickap.github.io/actions/workflows/mega-linter.yml/badge.svg)](https://github.com/ruzickap/ruzickap.github.io/actions/workflows/mega-linter.yml)
[![Build and Deploy](https://github.com/ruzickap/ruzickap.github.io/actions/workflows/gh-pages-build.yml/badge.svg?branch=main)](https://github.com/ruzickap/ruzickap.github.io/actions/workflows/gh-pages-build.yml)## Overview
My personal site and blog...
[**ruzickap.github.io**](https://ruzickap.github.io/)
- Main Page:
- Dev Page:## Theme Source
Chirpy:
- [GitHub](https://github.com/cotes2020/jekyll-theme-chirpy)
- [Example and tips/best practices](https://chirpy.cotes.page/)## Building / Testing Locally
On Ubuntu / Intel-based Mac:
```bash
bundle install
bundle exec jekyll s
```Using Docker:
```bash
docker run --rm -it --volume="${PWD}:/srv/jekyll" -e JEKYLL_UID="${UID}" -e JEKYLL_GID="${GID}" jekyll/jekyll -- bash -c 'chown -R jekyll /usr/gem/ && jekyll build --destination "public"'
docker run --rm -it --volume="${PWD}:/srv/jekyll" -e JEKYLL_UID="${UID}" -e JEKYLL_GID="${GID}" --publish 4000:4000 jekyll/jekyll -- bash -c 'chown -R jekyll /usr/gem/ && jekyll serve'
```Megalinter:
```bash
mega-linter-runner --remove-container --container-name="mega-linter" --debug --env VALIDATE_ALL_CODEBASE=true
```## Notes
- Use ` ```bash ` to run commands during the [post_tests](./.github/workflows/post_tests.yml)
"create" execution:````md
```bash
###
```
````- Use ` ```shell ` not to run commands during the [post_tests](./.github/workflows/post_tests.yml)
execution (they will be only displayed on the web pages):````md
```shell
### some commands...
```
````- Use ` ```sh ` to run commands during the [post_tests](./.github/workflows/post_tests.yml)
"destroy" execution:````md
```sh
###
```
````