The RecipeRadar blog is used to share updates and background about the RecipeRadar service.
It's a Hugo static site and posts are configured to read their timestamps from this git
repository.
Make sure to follow the RecipeRadar infrastructure setup to ensure all cluster dependencies are available in your environment.
To deploy the service to the local infrastructure environment, execute the following commands:
$ make
$ make deploy
To create a new blog post, run the following command:
$ hugo new posts/your-article-title.md
You should now be able to edit the article under content/posts/your-article-title.md
. Once you're done writing, remove the draft
flag from the file, and run make
to regenerate the blog. You can view the newly-generated content by opening the public/index.html
in a web browser.