github.com/uber/kraken@v0.1.4/docs/CONTRIBUTING.md (about)

     1  # Contributing To Kraken
     2  
     3  ## Issues
     4  
     5  Please feel free to submit new issues.
     6  
     7  ## Contributing
     8  
     9  Start by reading our [coding style guidelines](STYLEGUIDE.md).
    10  
    11  Please follow standard fork-and-pull workflow.
    12  
    13  - Fork the repo on GitHub
    14  - Clone the project locally
    15  - Commit changes to your own branch
    16  - Push the change back to your fork
    17  - Submit a Pull request. We will review and merge your change.
    18  
    19  ## Setup
    20  
    21  Most tests and scripts assumes the developer to have Docker installed locally.
    22  To install dependencies:
    23  ```
    24  $ make vendor
    25  ```
    26  To run unit tests:
    27  ```
    28  $ make unit-test
    29  ```
    30  To run integration tests:
    31  ```
    32  $ make integration
    33  ```
    34  To build docker images:
    35  ```
    36  $ make images
    37  ```