github.com/lyeb/hugo@v0.47.1/docs/content/en/troubleshooting/faq.md (about)

     1  ---
     2  title: Frequently Asked Questions
     3  linktitle: FAQ
     4  description: Solutions to some common Hugo problems.
     5  date: 2018-02-10
     6  categories: [troubleshooting]
     7  menu:
     8    docs:
     9      parent: "troubleshooting"
    10  keywords: [faqs]
    11  weight: 2
    12  toc: true
    13  aliases: [/faq/]
    14  ---
    15  
    16  {{% note %}}
    17  **Note:** The answers/solutions presented below are short, and may not be note be enough to solve your problem. Visit [Hugo Discourse](https://discourse.gohugo.io/) and use the search. It that does not help, start a new topic and ask your questions.
    18  {{% /note %}}
    19  
    20  ## Can I set configuration variables via OS environment?
    21  
    22  Yes you can! See [Configure with Environment Variables](/getting-started/configuration/#configure-with-environment-variables).
    23  
    24  ## How do I schedule posts?
    25  
    26  1. Set `publishDate` in the page [Front Matter](/content-management/front-matter/) to a date in the future.
    27  2. Build and publish at intervals.
    28  
    29  How to automate the "publish at intervals" part depends on your situation:
    30  
    31  * If you deploy from your own PC/server, you can automate with [Cron](https://en.wikipedia.org/wiki/Cron) or similar.
    32  * If your site is hosted on a service similar to [Netlify](https://www.netlify.com/) you can use a service such as [ifttt](https://ifttt.com/date_and_time) to schedule the updates.
    33  
    34  Also see this Twitter thread:
    35  
    36  {{< tweet 962380712027590657 >}}
    37  
    38  ## Can I use the latest Hugo version on Netlify?
    39  
    40  Yes you can! Read [this](/hosting-and-deployment/hosting-on-netlify/#configure-hugo-version-in-netlify).