
?

Benefits

npm install -g gatsby-cli
gatsby new gatsby-site
cd gatsby-site
gatsby develop


Do you have to use GraphQL for data?
When should you use unstructured data vs graphql?
npm install --save gatsby-source-filesystem
module.exports = {
siteMetadata: {
title: `blah`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
}
],
}
Deploy free on netlify