Is it possible to schedule posts with Jekyll?

2.1k views Asked by At

I suspect that one of the limitations of running a static site is that the administrator has to be at the helm when he wants a post to be published. I'm looking for that suspicion to be validated. Is there a method I haven't discovered?

1

There are 1 answers

5
kikito On BEST ANSWER

Set the site.future option to false on the _config.yml file.

Then set up a cron task in your server to regenerate your blog every day (or hour, whatever you fancy).

Posts set up in the future will be automatically published when the correct date is reached.