Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.01 KB

README.md

File metadata and controls

30 lines (18 loc) · 1.01 KB

RecipeRadar Blog

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.

Install dependencies

Make sure to follow the RecipeRadar infrastructure setup to ensure all cluster dependencies are available in your environment.

Local Deployment

To deploy the service to the local infrastructure environment, execute the following commands:

$ make
$ make deploy

Operations

Creating a new blog post

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.