Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Initial contributing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhathaway committed Dec 27, 2016
1 parent f238c8b commit 4ce1d66
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Contributing to Hawk Eye

Please search issues and pull requests before adding something new to avoid duplicating
efforts and conversations.

## Development setup

- Fork the [Hawk Eye](https://github.com/harksys/hawkeye) repository in to your own account, and clone to your device.
- Install the project dependencies.

```bash
$ npm install
```

- Install typing definitions.

```bash
$ typings Install
```

- You'll need to setup an OAuth GitHub app and add your configuration file under `src/js/Config/HawkEye.ts`. Follow the `HawkEye.default.ts` file for more information.
- Make your changes and build, then run the app.

```bash
$ gulp
$ electron .
```

- You can package the app using, and run from the dist folder.

```bash
$ npm run pack
```

- Confirm your changes work, and create a Pull Request to the Hawk Eye repository.

0 comments on commit 4ce1d66

Please sign in to comment.