Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 1.8 KB

CONTRIBUTING.md

File metadata and controls

61 lines (39 loc) · 1.8 KB

Contributing to the Docs

👍🎉First off, thanks for taking the time to contribute🎉👍

The following is a set of guidelines on how to contribute

What should I know before I get started?

The Docs Layout

The docs are layed out in 4 different sections.

Section Description
Api Reference References to the various App interfaces for hyper
Concepts Building blocks of hyper that are good to know for development
Build References and guides on how to build with hyper
Host Guides on how to host hyper

Depending on what you are writing, it will live in one of these sections.

Building

If you use GitPod, this is all done for you.

yarn
yarn dev

It will take some time to start, the documentation can then be viewed at (http://localhost:5473/)

How Can I Contribute?

Adding Content

To start work, do the following:

  1. Create an issue and/or comment on an existing issue to state you've started working
  2. Create a PR during or when complete

Request Missing Content

Missing something on the docs? Think there should be another section? Please create an issue and we'll try to get it added!

Committing

We are using conventional commits for this repository.

General flow for making a contribution:

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

NOTE: Be sure to merge the latest from "upstream" before making a pull request!