Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abelnnieva/book-review-website
Sample project for a book reviewer’s website, built with Jekyll and using the alna-jekyll-theme as the default theme.
https://github.com/abelnnieva/book-review-website
github-page jekyll markdown
Last synced: 20 days ago
JSON representation
Sample project for a book reviewer’s website, built with Jekyll and using the alna-jekyll-theme as the default theme.
- Host: GitHub
- URL: https://github.com/abelnnieva/book-review-website
- Owner: abelnnieva
- License: isc
- Created: 2024-06-15T13:58:26.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-15T15:15:48.000Z (7 months ago)
- Last Synced: 2024-11-01T18:24:51.112Z (2 months ago)
- Topics: github-page, jekyll, markdown
- Language: Ruby
- Homepage: https://abelnnieva.github.io/book-review-website/
- Size: 273 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# book-review-website
Sample project for a book reviewer’s website, built with Jekyll and using the [alna-jekyll-theme](https://github.com/abelnnieva/alna-jekyll-theme) as the default theme.
## Getting started
### Install Ruby
```bash
# install dependencies
$ brew install chruby ruby-install xz# install ruby
$ ruby-install ruby 2.7.8# configure the shell
$ echo "source $(brew --prefix)/opt/chruby/share/chruby/chruby.sh" >> ~/.zshrc
$ echo "source $(brew --prefix)/opt/chruby/share/chruby/auto.sh" >> ~/.zshrc
$ echo "chruby ruby-2.7.8" >> ~/.zshrc # run 'chruby' to see actual version
```### Install Jekyll
```bash
# install jekyll
gem install jekyll -v 3.4.0# install bundler
gem install bundler -v 2.4.22
```## Build Setup
```bash
# install dependencies
bundle install# serve with hot reload at localhost:4000
jekyll serve
```