An open API service indexing awesome lists of open source software.

https://github.com/andregri/andregri.github.io

My personal website built with Jekyll and minimal-mistakes and hosted by Github Pages
https://github.com/andregri/andregri.github.io

docker-compose jekyll

Last synced: 5 months ago
JSON representation

My personal website built with Jekyll and minimal-mistakes and hosted by Github Pages

Awesome Lists containing this project

README

          

# Serve with docker-compose
Host the website locally [on port 4000](http://localhost:4000):
```
docker-compose up
```

# Build and serve locally

To setup github pages locally, refer to the official [guide](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll#installing-jekyll).

The main steps are:
- Install gems from `Gemfile.lock`: `bundle install`
- Install bundle webrick `bundle add webrick`
- Build jekyll site: `bundle exec jekyll build`
- Build and serve jekyll site [on port 4000](http://localhost:4000): `bundle exec jekyll serve`

## Resources
- https://www.fabriziomusacchio.com/blog/2021-08-11-Minimal_Mistakes_Cheat_Sheet/