https://github.com/brunobonacci/bits-and-pieces
jekyll based blog
https://github.com/brunobonacci/bits-and-pieces
Last synced: over 1 year ago
JSON representation
jekyll based blog
- Host: GitHub
- URL: https://github.com/brunobonacci/bits-and-pieces
- Owner: BrunoBonacci
- Created: 2017-08-12T12:50:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-09-30T13:56:28.000Z (almost 3 years ago)
- Last Synced: 2025-01-22T05:28:40.382Z (over 1 year ago)
- Language: CSS
- Homepage: https://blog.brunobonacci.com/
- Size: 45.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
blog.brunobonacci.com
======================
bits and pieces (blogging website)
See my blog at: [blog.brunobonacci.com](http://blog.brunobonacci.com)
Jekyll theme based on the [Jekyll Uno](https://github.com/joshgerdes/jekyll-uno).
## Start locally
You can start locally with
``` bash
bundle install
bundle exec jekyll serve --watch
# build static site
bundle exec jekyll build
```
Then you can browse [http://localhost:4000/](http://localhost:4000/).
## Docker start
``` bash
mkdir -p /tmp/vendor/bundle
docker run --rm -v .:/srv/jekyll -v /tmp/vendor/bundle:/usr/local/bundle -p 4000:4000 -it jekyll/jekyll:3.8 jekyll serve --watch
```
## Publish
``` bash
cp -r ./_site/* ../bits-and-pieces-site/
# then commit and push
```