https://github.com/rmarting/rmarting.github.io
My personal blog about any kind of technical topics (integration, messaging, developing, ...)
https://github.com/rmarting/rmarting.github.io
Last synced: 2 months ago
JSON representation
My personal blog about any kind of technical topics (integration, messaging, developing, ...)
- Host: GitHub
- URL: https://github.com/rmarting/rmarting.github.io
- Owner: rmarting
- License: apache-2.0
- Created: 2020-09-25T09:05:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-23T18:26:26.000Z (11 months ago)
- Last Synced: 2025-01-26T11:08:09.730Z (4 months ago)
- Language: CSS
- Homepage: https://blog.jromanmartin.io/
- Size: 20.5 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# rmarting.github.io site




[](https://gitmoji.dev)This is the repo of [my personal blog](https://blog.jromanmartin.io), enjoy it better on live.
If you want to contribute, please, review my how you could do it [here](./CONTRIBUTING.md), and
don't forget to follow the [Code of Conduct](./CODE_OF_CONDUCT.md).This blog is a customization of the [Flexible-Jekyll Theme](https://github.com/artemsheludko/flexible-jekyll).
## Building locally
This site is built with [Jekyll](https://jekyllrb.com). If you want to build and run
locally then you need to follow [the instructions](https://jekyllrb.com/docs/installation/) for
your local environment.**NOTE**: Github-Pages uses `Jekyll 3.9`, which isnβt compatible with Ruby 3. Keep in mind for your
local environment.**TL;DR**: This is the sort way to install Ruby 2.7.2 in a Fedora 38 workstation to build and run
locally this site. For Fedora workstations, [this reference](https://developer.fedoraproject.org/tech/languages/ruby/ruby-installation.html)
using `rbenv`, or [this another](https://tecadmin.net/install-ruby-on-fedora/) using `rvm` can help you.
For other environments, please contribute with here with your knowledge and experience.Main steps
```shell
on π© β― rbenv install 2.7.2
on π© β― rbenv global 2.7.2
on π© β― ruby -v
ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-linux]
on π© β― gem install jekyll bundler
on π© β― bundle install
```If you have already installed the gems, use `bundle update` for updating.
## Running locally
To run locally, to test and verify this blog site:
```shell
bundle exec jekyll serve
```Your local site is available at [http://127.0.0.1:4000/](http://127.0.0.1:4000/).