emgarten / Sleet

A static nuget feed generator for Azure Storage, AWS S3, and more.
MIT License
362 stars 43 forks source link

Create a little json for unspecified feed types. #58

Closed mlhpdx closed 5 years ago

mlhpdx commented 5 years ago

Currently, the command sleet createconfig produces output like:

{
  "username": "",
  "useremail": "",
  "sources": []
}

Which leave the user guessing a bit about what goes in sources. It's minor, but helpful to suggest the bare minium starting point for a source:

{
  "username": "",
  "useremail": "",
  "sources": [
    {
      "name": "myFeed",
      "type": ""
    }
  ]
}