Gatsby Admin
A visual interface to configure your Gatsby site.
Development
The Admin app itself is a standard Gatsby site. It fetches its data from the Recipes GraphQL server, which exposes all the information we need about the Gatsby site.
It uses theme-ui (with the strict-ui experiment) and gatsby-interface to style the app and urql to fetch the data from the GraphQL server.
Running it locally
The easiest way to work on Admin locally is to develop Admin itself.
- Make sure to have the dependencies installed by running
yarn
in the root folder - Start the develop process for the Admin site by running
yarn workspace gatsby-admin run develop
If you see eslint errors you'll need to temporarily replace all references to ___loader
with window.___loader
in packages/gatsby-link/index.js
.
Running it on a local site
To try Admin with one of your sites locally, use the gatsby-dev-cli
to copy the local versions of gatsby
, gatsby-cli
, gatsby-recipes
, gatsby-core-utils
and gatsby-admin
into your project:
~/gatsby
yarn run watch
~/my-gatsby-site
$ gatsby-dev --packages gatsby gatsby-cli gatsby-recipes gatsby-core-utils gatsby-admin
~/my-gatsby-site
$ GATSBY_EXPERIMENTAL_ENABLE_ADMIN=true gatsby develop
Then visit localhost:8000/\_\_\_admin
and you should see Gatsby Admin for your site!