PROD_CHECKLIST.md
If you are done with your hackathon and thinking about launching your project into production, or if you are just using this boilerplate to start your soon to be in production application, this document is a checklist to help you get your application production ready.
LICENSE.md and the relevant license field in package.json if applicable - See npm's doc.The following is a list of various code that you may not potentially be using and you could remove depending on your application:
Note that SEO only applies to the pages that will be publicly visible with no authentication. Note that some of the following fields need to be added to the HTML header section similar to the page title
Add Open Graph fields for SEO Open Graph data:
<meta property="og:title" content="Title">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.example.com/article.html">
<meta property="og:image" content="http://www.example.com/image.png">
Add a page description, which will show up in the search results of the search engine.
<meta name="Description" content="Description about the page.">