Compare commits

...

2 Commits

Author SHA1 Message Date
Jesper Hess 30a954ff4d
Add docker-compose file
Just to make it easier to do development without installing all the jekyll stuff yourself.

All you need is docker+docker-compose and run 'docker-compose up' in the root of the project.
2018-01-22 16:34:17 -08:00
Jesper Hess 70a2357283
Add jekyll-livereload support
To enable livereload, add
--livereload --reload_port 35729
to jekyll serve command. Pages will now auto-reload when changes are made during development.
2018-01-22 16:32:56 -08:00
2 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,7 @@ gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
gem "jekyll-livereload"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
jekyll:
image: jekyll/jekyll
command: jekyll serve --livereload --reload_port 35729
ports:
- 4000:4000
- 35729:35729
volumes:
- .:/srv/jekyll