Skip to content

TheHumaneClub/gatsby-digital-garden

 
 

Repository files navigation

gatsby-theme-garden

A Gatsby theme for publishing a digital garden.

Installation

For a new site

If you're creating a new site and want to use the garden theme, you can use the garden theme starter. This will generate a new site that pre-configures use of the garden theme.

gatsby new my-digital-garden https://github.com/mathieudutour/gatsby-starter-digital-garden

Manually add to your site

  1. Install the theme
npm install gatsby-theme-garden
  1. Add the configuration to your gatsby-config.js file
// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-theme-garden`,
      options: {
        // basePath defaults to `/`
        basePath: `/garden`,
        rootNote: `/garden/About-these-notes`,
        contentPath: `/content/garden`,
      },
    },
  ],
};
  1. Add notes to your site by creating md or mdx files inside /content/garden.

  2. Run your site using gatsby develop and navigate to your notes. If you used the above configuration, your URL will be http://localhost:8000/garden

You can also use a Roam Research database to source your notes. Specify the roamUrl, roamEmail and roamPassword options to do so. More information on gatsby-source-roamresearch

Options

Key Default value Description
basePath / Root url for the garden
rootNote The URL of the note to use as the root
contentPath Location of local content
roamUrl The URL of your Roam Research database
roamEmail Email used to sign into Roam Research
roamPassword Password used to sign into Roam Research
mdxOtherwiseConfigured false Set this flag true if gatsby-plugin-mdx is already configured for your site.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 57.7%
  • TypeScript 27.4%
  • CSS 14.9%