Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Latest commit

 

History

History
68 lines (44 loc) · 1.96 KB

README.md

File metadata and controls

68 lines (44 loc) · 1.96 KB

Graasp Developers

Conventional Commits Codeship

Development

Environment

To setup your development environment you will need yarn. Once you have yarn, run yarn install.

Docker

The easiest way to view the application is using Docker.

  1. Run docker-compose up
  2. Visit localhost:4567
  3. Make your changes.
  4. Refresh the page and the changes should be visible.
  5. If you make any structural changes you might have to rebuild. Stop the process with Ctrl-C and run docker-compose up --build.

Contributing

We welcome contributions!

Committing

We follow the standards put forth by Conventional Commits.

<type>[optional scope]: <description>

[optional body]

[optional footer]

Example:

fix: minor typos in code

see the issue for details on the typos fixed

fixes #12

Internal Contributors

  1. Clone this repository.
  2. Open an issue explaining what you want to contribute.
  3. Create a branch off master with format <issue number>/<small-description> e.g. 1/change-logo.
  4. Make your changes.
  5. Commit following the standards put forth by Conventional Commits.
  6. Send a pull request to master.

External Contributors

  1. Fork this repository.
  2. Open an issue in our repository explaining what you want to contribute.
  3. Make your changes on your fork.
  4. Commit following the standards put forth by Conventional Commits.
  5. Send a pull request to our master branch.

Publishing

Publishing happens automatically when changes are merged to master.