Awesome
Gatsby Starter Blog
Another blog starter with enough features to be production ready out of the box
Features
- Easily have custom background images on a post by post basis by included a Wordpress Featured Image
- Source posts from Wordpress using WPGraphQL
- High performance
- Config first setup
- Extendable
- Sort by Category
- RSS generation
π Quick start
-
Create a Gatsby site.
Use the Gatsby CLI to create a new site, specifying the blog starter.
# create a new Gatsby site using the blog starter gatsby new my-blog-starter https://github.com/zeevosec/gatsby-starter-wordpress-blog
-
Configure your environment
Make a
.env
file at the root of this project with your WPGraphQL endpoint and WP Admin endpoint:Example:
# .env WPGRAPHQL_URL=https://mywpsite.com/graphql WP_ADMIN_URL=https//mywpsite.com/wp-login
-
Start developing.
Navigate into your new siteβs directory and start it up.
cd my-blog-starter/ gatsby develop
π§ What's inside?
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
βββ node_modules
βββ src
βββ static
βββ .browserslistrc
βββ .gitignore
βββ .eslintrc
βββ .gitattributes
βββ .gitignore
βββ .prettierrc
βββ .travis.yml
βββ gatsby-config.js
βββ gatsby-node.js
βββ LICENSE
βββ package-lock.json
βββ package.json
βββ README.md
βββ yarn.lock
-
/node_modules
: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed. -
/src
: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template.src
is a convention for βsource codeβ. -
/static
: This directory will contain all of your static files that are used globally in the site. Like background images, or attachments. -
.browserslistrc
: Specifies which browser and what version we want our site to target. -
.eslintrc
: Eslint configuration, following mostly Prettier defaults. -
.gitattributes
: Defines git attributes for paths -
.gitignore
: This file tells git which files it should not track / not maintain a version history for. -
.prettierrc
: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent. -
.travis.yml
: A file used by Travis-CI to define actions or run tests and linting. -
gatsby-config.js
: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youβd like to include, etc. (Check out the config docs for more detail). -
gatsby-node.js
: This file is where Gatsby expects to find any usage of the Gatsby Node APIs (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process. -
LICENSE
: This starter is licensed under the MIT license. -
package-lock.json
(Seepackage.json
below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. Feel free to remove this if you are using Yarn. (You wonβt change this file directly). -
package.json
: A manifest file for Node.js projects, which includes things like metadata (the projectβs name, author, etc). This manifest is how npm knows which packages to install for your project. -
README.md
: This file! Edit me to make it yours! -
yarn.lock
: A file useful for the package manager Yarn (like package-lock.json). Feel free to remove this if you are using NPM. (You wonβt change this file directly).