I'm using Jekyll for one of my blogs and I'm really liking it. It's easy to get up and running with it and it just works!
If you're planning to create a blog and want something simpler that just do the job and doesn't ask you too much time to do setup, learn about it, etc, Jekyll might be a good option for you.
During this process, I observed a few pain points:
- I have to manually start the server every time I want to use it.
- Dealing with localhost and port numbers.
- I have to use a code editor to make the writing and building more convenient, although there might be better alternatives to only focus on the writing part.
For pain points 1 and 2 I created a solution this morning and wanted to share with you.
I wrote all the details on this article Running Jekyll on Docker For Easy Local Development
The general idea is:
- Use docker to keep the sever running on my machine with live reload enabled;
- Use a reverse proxy to map a domain to the
localhost:4000
address.
For point 3 I'm still about to research a solution. Once I find one that I like I'll share here as well.
Have a great weekend! :)
Top comments (2)
@jcfausto For the pain point #2, dev.to/vishalraj82/using-https-in-... might be of some help.
Cool! Nice article. When the time comes to do the setup to use HTTS I'll definitely try your approach! Thanks for sharing! 👍