Gatsby static site generator setup for Snipette (pulls from Ghost, deploys to Netlify). https://snipettemag.com
Go to file
Hippo 39dfe89b9a Show excerpts if they're not too long
In practice, that means we'll just copy-paste the "bylines" for
the Snipette excerpts. Then they'll be short enough ;-)
2019-12-05 16:09:15 +05:30
.github/ISSUE_TEMPLATE Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
plugins/gatsby-plugin-ghost-manifest Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
src Show excerpts if they're not too long 2019-12-05 16:09:15 +05:30
static Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
.editorconfig Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
.eslintignore Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
.eslintrc.js Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
.ghost.json Add Snipette Heroku Live! 2019-09-27 21:56:51 +05:30
.gitignore Add .geany project files to .gitignore 2019-09-28 17:00:57 +05:30
LICENSE Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
README.md Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
gatsby-browser.js Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
gatsby-config.js Add Google Analytics 2019-09-28 16:49:23 +05:30
gatsby-node.js Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
netlify.toml Initial commit from gatsby: (https://github.com/TryGhost/gatsby-starter-ghost.git) 2019-09-19 16:43:37 +05:30
package.json Add Google Analytics 2019-09-28 16:49:23 +05:30
yarn.lock Add Google Analytics 2019-09-28 16:49:23 +05:30

README.md

Gatsby Starter Ghost

A starter template to build lightning fast websites with Ghost & Gatsby

Demo: https://gatsby.ghost.org

 

gatsby-starter-ghost

 

Installing

# With Gatsby CLI
gatsby new gatsby-starter-ghost https://github.com/TryGhost/gatsby-starter-ghost.git
# From Source
git clone https://github.com/TryGhost/gatsby-starter-ghost.git
cd gatsby-starter-ghost

Then install dependencies

yarn

 

Running

Start the development server. You now have a Gatsby site pulling content from headless Ghost.

gatsby develop

By default, the starter will populate content from a default Ghost install located at https://gatsby.ghost.io.

To use your own install, edit the .ghost.json config file with your credentials. You can find your contentApiKey in the "Integrations" screen in Ghost Admin. The minimum required version for Ghost is 2.10.0 in order to use this starter without issues.

 

Deploying with Netlify

The starter contains three config files specifically for deploying with Netlify. A netlify.toml file for build settings, a /static/_headers file with default security headers set for all routes, and /static/_redirects to set Netlify custom domain redirects.

To deploy to your Netlify account, hit the button below.

Deploy to Netlify

Content API Keys are generally not considered to be sensitive information, they exist so that they can be changed in the event of abuse; so most people commit it directly to their .ghost.json config file. If you prefer to keep this information out of your repository you can remove this config and set Netlify ENV variables for production builds instead.

Once deployed, you can set up a Ghost + Netlify Integration to use deploy hooks from Ghost to trigger Netlify rebuilds. That way, any time data changes in Ghost, your site will rebuild on Netlify.

 

Optimising

You can disable the default Ghost Handlebars Theme front-end by enabling the Make this site private flag within your Ghost settings. This enables password protection in front of the Ghost install and sets <meta name="robots" content="noindex" /> so your Gatsby front-end becomes the source of truth for SEO.

 

Extra options

# Run a production build, locally
gatsby build

# Serve a production build, locally
gatsby serve

Gatsby develop uses the development config in .ghost.json - while Gatsby build uses the production config.

 

Copyright & License

Copyright (c) 2013-2019 Ghost Foundation - Released under the MIT license.