gatsby-tinacms-teams
Adds Tina Teams authentication and authorization to a Gatsby site.
Install
npm install --save gatsby-tinacms-teams
or
yarn install gatsby-tinacms-teams
How to Use
Setting up Tina Teams
TODO
Configuring the Plugin
plugins: [
{
resolve: "gatsby-plugin-tinacms",
options: {
plugins: [
"gatsby-tinacms-teams"
]
}
}
],
Starting the App
Teams authentication is controlled by the REQUIRE_AUTH
environment variable.
package.json
"scripts": {
"auth-start": "REQUIRE_AUTH=true gatsby develop"
}
Alternatively, you can use .env files:
.env.staging
REQUIRE_AUTH=true
You will also need to set the TINA_TEAMS_NAMESPACE
environment variable. This will be the email of the user who owns this site within Tina Teams
.env.staging
REQUIRE_AUTH=true
TINA_TEAMS_NAMESPACE=james@forestry.io
