New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

gatsby-tinacms-teams

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-tinacms-teams

Adds [Tina Teams](https://tinacms.org/teams/) authentication and authorization to a Gatsby site.

0.42.1
latest
Version published
Weekly downloads
32
700%
Maintainers
12
Weekly downloads
 
Created

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

// In your gatsby-config.js
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

TINA CMS

FAQs

Package last updated on 28 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts