Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1 KB

CONTRIBUTING.md

File metadata and controls

53 lines (33 loc) · 1 KB

Contributing

By participating to this project, you agree to abide our code of conduct.

Setup your machine

zpan is written in Go.

Prerequisites:

Clone notion-site anywhere:

$ git clone git@github.com:pkwenda/notion-site.git

Install the build and lint dependencies:

$ make mod

A good way of making sure everything is all right is running the test suite:

$ make test

Test your change

You can create a branch for your changes and try to build from the source as you go:

$ make build

Which runs all the linters and tests.

Create a commit

Commit messages should be well formatted, and to make that "standardized", we are using Conventional Commits.

You can follow the documentation on their website.

Submit a pull request

Push your branch to your notion-site fork and open a pull request against the master branch.