Socket
Socket
Sign inDemoInstall

@factly/gatsby-source-dega

Package Overview
Dependencies
3
Maintainers
3
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @factly/gatsby-source-dega

@factly/gatsby-source-dega Source from [DegaCMS](https://dega.factly.in) API in Gatsby.


Version published
Weekly downloads
112
decreased by-0.88%
Maintainers
3
Created
Weekly downloads
 

Readme

Source

@factly/gatsby-source-dega

Source from [DegaCMS](https://dega.factly.in) API in Gatsby.

Install

npm install --save @factly/gatsby-source-dega

How to use

Prerequisites

First, you need a way to pass environment variables to the build process, so secrets and other secured data aren't committed to source control. I recommend using [dotenv][dotenv] which will then expose environment variables. [Read more about dotenv and using environment variables here][envvars]. Then you can use these environment variables and configure your plugin.

You'll need an API Key and Space Id from dega

Save both to your environment variable file

It should look something like this:

API_KEY=your-api-key-here
SPACE_ID=you-space-id-here

gatsby-config

The plugin sets some defaults for the endpoints and options. Hence you can use it only with the two mandatory entries apiKey and spaceId.

module.exports = {
  plugins: [
    {
      resolve: '@factly/gatsby-source-dega',
      options: {
        // apiKey and spaceId are mandatory
        apiKey: process.env.API_KEY,
        spaceId: process.env.SPACE_ID,
      },
    },
  ],
}

Keywords

FAQs

Last updated on 05 Jan 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc