This repo contains a Gatsby starter site pre-configured with Kontent.ai source plugin. The site portrays a list of articles written by a coffee shop called dancing goat.
- Node.js with NPM installed
The preferred way is to use Gatsby CLI gatsby new
command, but you can of course simply clone or fork this repo.
Make sure you have Gatsby CLI installed via npm list -g gatsby-cli
. If not, you can install CLI via npm install --global gatsby-cli
.
Then, navigate to your projects directory and run gatsby new [subdirectory name] https://github.com/kontent-ai/gatsby-starter
. Replace [subdirectory name]
with your project directory's name. The CLI tool will essentially do three things:
- create a subdirectory
- clone the starter site code files into that subdirectory
- run
npm install
to get all dependencies for you- that also copies content from
.env.template
to newly created.env
file usingprepare
npm script
- that also copies content from
Clone or fork this repo. Once it's done, navigate to the app's root directory and run:
npm install
Now, run:
npm run develop
(or gatsby develop
, should you have the Gatsby CLI installed)
This will bootstrap the site, build all static pages and start the site at http://localhost:8000 . You'll also be able to test arbitrary GraphQL queries in the GraphiQL interface via http://localhost:8000/___graphql.
You may use any IDE, however, we recommend Visual Studio Code as we have added a settings file for easier debugging.
- Go to app.kontent.ai
- Click on the account icon and click on the
projects
- Select Sample Project. If there is not any, there should be a card with an option to create it.
- Set environment variables to
.env
(created automatically by runningnpm install
)KONTENT_PROJECT_ID
from Go to "Project Settings" -> "API keys" -> "Project ID"KONTENT_LANGUAGE_CODENAMES
from "Project Settings" -> "Localization" (use "Codename" of each language)
To load data from Preview API just set the following environment variables to your .env
file (created automatically by running npm install
)
KONTENT_PREVIEW_KEY
from Go to "Project Settings" -> "API keys" -> "Preview API" -> "Primary key/Secondary key"KONTENT_PREVIEW_ENABLED
totrue
Of all the artifacts of Kontent.ai, the starter site only displays content items and only in the default language. But, our source plugin also provides content types and items in non-default languages.
Check out the source plugin's readme for more details on which kinds of data and relationships it supports.