Skip to content

Latest commit

 

History

History
94 lines (61 loc) · 2.65 KB

CONTRIBUTING.md

File metadata and controls

94 lines (61 loc) · 2.65 KB

Contributing Guidelines

Aksara UI is an open source, so every component in Aksara UI is developed by your help. You too can help contribute to this project! This page describes how to setup the project on your computer for local development.

This project is bound by a Code of Conduct.

The Five Golden Rules

The simple steps of contributing to any GitHub project are as follows:

  1. Fork the repository
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push -u origin my-new-feature
  5. Create a Pull Request!

To keep your fork of in sync with this repository, follow this guide.

For members of the Kata.ai organisation, or if you have push access to this repository, just clone directly from the repo and push your branches here. It's fine.

Prerequisites

Windows, macOS and Linux

In general, contributors should use Node v10 and Yarn v1.x

Prerequisite Check

Run these commands inside the Terminal (PowerShell/Command Prompt for Windows).

Git: You should see the version number:

$ git version
git version 2.18.0

Node.js: You should see the version number:

Note that we use .nvmrc in the root of this repository, to run nvm use automatically please kindly follow this documentation

$ node -v
v10.17.0

Yarn: You should see the version number:

$ yarn -v
1.9.4

Setting Up

First, you should clone the repository that you forked.

$ git clone https://github.com/[your username]/aksara-ui.git

For example:

$ git clone https://github.com/resir014/aksara-ui.git

After this repository has been cloned, cd into the repository:

$ cd aksara-ui

Install the project's dependencies. Note that we use Yarn, not npm:

$ yarn

Developing

To start developing components, you have to run the Storybook server.

$ yarn storybook
info Storybook started on => http://localhost:9001/

The storybook server is available at http://localhost:9001. Note that any new component needs to have at least one story as a demo, and some tests.