Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

70 lines (46 loc) · 1.08 KB

For Contributors

Setup

Requirements

To confirm these system dependencies are configured correctly:

$ make doctor

Installation

Install project dependencies into a virtual environment:

$ make install

Data

To automatically create test accounts, update .envrc with your own information and run direnv allow. Then, generate new seed data for local development:

$ make data

Development Tasks

Testing

Manually run the tests:

$ make test

or keep them running on change:

$ make dev

In order to have OS X notifications, brew install terminal-notifier.

Static Analysis

Run linters and static analyzers:

$ make check

Continuous Integration

The CI server will report overall build status:

$ make ci