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
- Host: GitHub
- URL: https://github.com/andregri/andregri.github.io
- Owner: andregri
- License: mit
- Created: 2020-06-07T09:34:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T18:51:31.000Z (about 2 years ago)
- Last Synced: 2024-04-02T19:02:47.672Z (about 2 years ago)
- Topics: docker-compose, jekyll
- Language: JavaScript
- Homepage: https://andregri.com
- Size: 844 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/