Error loading the CMS configuration

I’m trying to get Netlify CMS to work on my site. I’m sure I’ve done something wrong, but just not sure what it is. Here is my error when trying to access site.com/admin

Error loading the CMS configuration
Config Errors:
'collections[0]' should have required property 'files'
'collections[0]' should have required property 'folder'
'collections[0]' should match exactly one schema in oneOf
Check your config.yml file.

Here is my config.yml file…

backend:
name: git-gateway
branch: master # Branch to update (optional; defaults to master)
media_folder: “static/images/uploads”
public_folder: “/images/uploads”
collections:

  • name: “blog” # Used in routes, e.g., /admin/collections/blog
    label: “Blog” # Used in the UI
    create: false # Allow users to create new documents in this collection
    fields: # The fields for each document, usually in front matter
    • {label: “Layout”, name: “layout”, widget: “hidden”, default: “blog”}
    • {label: “Publish Date”, name: “date”, widget: “datetime”}
    • {label: “Body”, name: “body”, widget: “markdown”}

You didn’t specify a folder or file where your markdown files will be stored. Try creating a folder and setting it in config.yml if you want to use a folder collection. Otherwise specify a file where your data should be stored using a file collection.

Thanks! Got it working.