All Projects → kata-ai → grundgesetz-skeleton

kata-ai / grundgesetz-skeleton

Licence: MIT license
You have a documentation. I turn it into a website. Any questions?

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to grundgesetz-skeleton

gatsby-boilerplate
An awesome boilerplate to start projects in Gatsby considering as starter point the development experience of Electric.js 🔥⚡⚡
Stars: ✭ 28 (-33.33%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter
Gatsby Starter for creating portfolio & blog.
Stars: ✭ 55 (+30.95%)
Mutual labels:  gatsby, gatsby-starter
Gatsby Starter Alchemy
A Gatsby starter with PostCSS powers ✨🔮
Stars: ✭ 23 (-45.24%)
Mutual labels:  gatsby, starter-kit
gatsby-starter-portfolio-bella
A bright single-page portfolio starter for Gatsby powered by Prismic.io. The target audience are designers and photographers.
Stars: ✭ 125 (+197.62%)
Mutual labels:  gatsby, gatsby-starter
gatsby-blog-template
✍️ A GatsbyJS Blog Template for blogging purposes.
Stars: ✭ 38 (-9.52%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-multiverse
Gatsby.js V2 starter template based on multiverse by HTML5 UP
Stars: ✭ 14 (-66.67%)
Mutual labels:  gatsby, gatsby-starter
Gatsby Starter Typescript Plus
A starter kit for TypeScript-based Gatsby projects with sensible defaults.
Stars: ✭ 177 (+321.43%)
Mutual labels:  gatsby, starter-kit
gatsby-ghost-novela-starter
A Gatsby starter for creating blogs from headless Ghost CMS.
Stars: ✭ 31 (-26.19%)
Mutual labels:  gatsby, gatsby-starter
gatsby-generator
🎰 Generate Gatsby Starters in Seconds
Stars: ✭ 23 (-45.24%)
Mutual labels:  gatsby, gatsby-starter
gatsby-typescript-emotion-storybook
Gatsby Starter: TypeScript + Emotion + Storybook + React Intl + SVGR + Jest
Stars: ✭ 63 (+50%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-paradigmshift
Gatsby.js V2 starter template based on Paradigm Shift by HTML5 UP
Stars: ✭ 16 (-61.9%)
Mutual labels:  gatsby, gatsby-starter
gatsby-wordpress-libre-starter
A Gatsby starter for creating blogs from headless WordPress CMS.
Stars: ✭ 23 (-45.24%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-rocketdocs
The documentation starter you were looking for ⚡️
Stars: ✭ 215 (+411.9%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-leaflet
🍃 A Gatsby starter with Leafet to quickly build React apps with a map!
Stars: ✭ 108 (+157.14%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-antoine
My opinionated Gatsby.js starter
Stars: ✭ 17 (-59.52%)
Mutual labels:  gatsby, gatsby-starter
Gatsby Blog Starter Kit
A simple starter kit for a static blog created with Gatsby
Stars: ✭ 131 (+211.9%)
Mutual labels:  gatsby, starter-kit
gatsby-starter-docz
📝 Gatsby starter with Docz and a blog for your documentation
Stars: ✭ 87 (+107.14%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-i18n-bulma
A gatsby multilanguage template with bulma and i18n: it is a work in progress...
Stars: ✭ 22 (-47.62%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-apple
🍎 Gatsby blog starter kit with beautiful responsive design
Stars: ✭ 88 (+109.52%)
Mutual labels:  gatsby, gatsby-starter
gatsby-starter-wordpress-graphql
A bare-bones Gatsby starter powered WordPress and WPGraphQL!
Stars: ✭ 62 (+47.62%)
Mutual labels:  gatsby, gatsby-starter

grundgesetz-skeleton

You have a documentation. I turn it into a website. Any questions?

Welcome to Grundgesetz. It's a skeleton for generating accessible documentation pages built on top of Gatsby. It creates static pages from your Markdown documentation files, all prettily formatted with a easy-to-use layout.

Grundgesetz is initially built to solve internal issues in managing documentation for our products at Kata.ai, but at the same we also found out that it's a good base for quickly deploying a documentation site online, so we put this up for everyone to use.

What's with the name?

It's German for "constitution". We had a thing for German codenames here at Kata.ai.

Who's using it?

Core Concepts

Just Your Docs

Grundgesetz is set up for you to get up and running straight away. We know that writing proper documentation often takes a long time, so we aim to create this tool to standardise your documentation format.

All your docs are written in the familiar Markdown format and go inside the /docs folder. You can customise the table of contents and the header menu through a JSON file. It will generate pages with path names based on the directory tree, but you can override it anytime by setting a permalink frontmatter.

Instantly Deployable

Since Grundgesetz is a static site generator, you can instantly deploy to any static web host.

Have an instance of Grundgesetz set up on GitHub? You can easily deploy it using the built-in deploy task. You can also set up a continuous deployment pipeline for hosting providers like Netlify or Vercel.

Blazing Fast

Grundgesetz is built on top of Gatsby, a blazing-fast static site generator for React. Also, putting the words "blazing fast" into any project's README seems to attract a lot of folks lately. So I put it in here. Sorry.

Want to learn more about Gatsby? Click here.


Geting Started

Prerequisites

  • Node.js (8.0.0+)
  • Yarn (Optional. You can still use npm if you want, but this is for your own sanity.)

Initializing the Project

The Fast Way

You can now create a new repository with Grundgesetz included by going to the GitHub page clicking on the "Use this template" button on the top right.

use-template

This will take you to the Create Repository screen. Fill in the details of your projects, and click "Create repository from template".

new-repo-from-template

Once the repository is created, you can clone the repository and open your terminal in the repository's folder. Once you're there, install the dependencies by running yarn (or npm install, if you prefer to use npm).

Using Gatsby CLI

Alternatively, you can bootstrap your project using gatsby-cli. To install it, run the following command.

# npm
npm install -g gatsby-cli
# yarn
yarn global add gatsby-cli

Now we have gatsby-cli installed, we can now create a project based on the Grundgesetz skeleton by running:

gatsby new project-name https://github.com/kata-ai/grundgesetz-skeleton

The project is generated in the folder with the project-name you specified. In the next section, we will start writing our documentation on-the-fly with the development server.

Running the server

Now that we have the project set up, let's cd to the generated project. Here we'll have to install our node dependencies. To do so, run the following command.

# npm
npm install
# yarn
yarn

To start working on our documentation, we need to start a development server.

# npm
npm dev
# yarn
yarn dev

The command above will start a development server with hot-reloading capabilities on localhost:8000. From now on, you can start writing your documentation with ease.

Read the docs for tips on how to deploy your new docs website to production.

Credits

Built with Gatsby - the blazing-fast static site generator for React.

Authors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].