First, thank you for contributing!
We love pull requests from everyone. By participating in this project, you agree to abide by the Hound code of conduct.
Here are a few technical guidelines to follow:
- Open an issue to discuss a new feature.
- Write tests.
- Make sure the entire test suite passes locally and on CI.
- Open a Pull Request.
- Squash your commits after receiving feedback.
- Party!
-
After cloning the repository, run the setup script:
./bin/setup
-
Make sure that Postgres, and Redis, are both installed and running locally.
-
Log into your GitHub account and go to your developer application settings.
-
Under the Developer applications panel - Click on "Register new application" and fill in the details:
- Application Name: Hound Development
- Homepage URL:
http://localhost:5000
- Authorization Callback URL:
http://localhost:5000
-
On the confirmation screen, copy the
Client ID
andClient Secret
toGITHUB_CLIENT_ID
andGITHUB_CLIENT_SECRET
in the.env.local
file. -
Run
foreman start
. Foreman will start the web server and the Sidekiq background job queue. NOTE:rails server
will not load the appropriate environment variables and you'll get a "Missingsecret_key_base
for 'development' environment" error. Similarly,heroku local
andforego start
will fail to properly load.env.local
. -
Open
localhost:5000
in a browser.
Ngrok allows Hound to receive webhooks from GitHub. If you'd like to develop or test a feature involving GitHub sending a pull request notification to your local Hound server you'll need to have ngrok or something similar set up.
To get started with ngrok, sign up for an ngrok account and configure ngrok locally by installing ngrok and running:
ngrok authtoken <your-token>
-
Launch ngrok on port 5000 (we recommend running ngrok with a custom subdomain for easy and persistent configuration, but this requires a paid ngrok account. You can still run Hound with a free ngrok account, but it will require keeping the GitHub developer application configuration and your
.env.local
files up to date if your ngrok subdomain changes).-
If you're using a custom subdomain:
ngrok http -subdomain=<your-initials>-hound 5000
-
If you're using a free ngrok plan:
ngrok http 5000
-
-
Set the
HOST
variable in your.env.local
to your ngrok host, e.g.<your-subdomain>.ngrok.io
. -
Change
ENABLE_HTTPS
to 'yes' in the.env.local
file. You might need to allow insecure access to localhost (see this link for a possible workaround). -
Log into your GitHub account and go to your developer application settings.
-
Under the Developer applications panel - Click on "Register new application" and fill in the details:
- Application Name: Hound Development
- Homepage URL:
https://<your-subdomain>.ngrok.io
- Authorization Callback URL:
https://<your-subdomain>.ngrok.io
-
On the confirmation screen, copy the
Client ID
andClient Secret
toGITHUB_CLIENT_ID
andGITHUB_CLIENT_SECRET
in the.env.local
file. -
On the personal access token page, click "Generate new token" and fill in token details:
- Token description: Hound Development
- Select scopes:
repo
anduser:email
-
On the confirmation screen, copy the generated token to
HOUND_GITHUB_TOKEN
in the.env.local
file. Also updateHOUND_GITHUB_USERNAME
to be your username. -
Run
foreman start
. Foreman will start the web server and the Sidekiq background job queue. NOTE:rails server
will not load the appropriate environment variables and you'll get a "Missingsecret_key_base
for 'development' environment" error. Similarly,heroku local
andforego start
will fail to properly load.env.local
. -
Open
https://<your-subdomain>.ngrok.io
in a browser.
- Set up your
development
environment as per above. - Run
rake
to execute the full test suite.
To test Stripe payments on staging use this fake credit card number.
Card | Number | Expiration | CVV |
---|---|---|---|
Visa | 4242424242424242 | Any future date | Any 3 digits |
The main Hound app (this app) receives PR hooks from GitHub, then it communicates with the Linters app (or a few individual linter services) to review changed files in the PR. Linters communicate back with violations they found, and the Hound app sends comments back to GitHub.
Here is the list of all the linters and where to find them, as well as any default configuration they might use:
- Ruby
- RuboCop
- Flog
- Reek
- CoffeeScript
- JavaScript
- JSHint
- ESLint
- TypeScript
- SCSS
- Haml
- ERB
- Elixir
- Go
- Markdown
- Swift
- Shell scripts
Linters check code snippets for style violations. They operate by polling a Sidekiq queue.
Linter jobs are created with the following arguments:
commit_sha
- The git commit SHA of the code snippet. This should be passed through to the outbound queue.config
- The configuration for the linter. This will be linter specific.content
- The source code to check for violations.filename
- The name of the source file for the code snippet. This should be passed through to the outbound queue.linter_name
- A string that identifies which linter is assigned to this linter job. This must be passed through to the outbound queue unmodified.patch
- The patch content from GitHub for the file being reviewed. This should be passed through to the outbound queue.pull_request_number
- The GitHub pull request number. This should be passed through to the outbound queue.
Once linting is complete, resulting violations should be posted to the outbound "CompletedFileReviewJob" queue:
-
violations
- An array of violation objects. Each violation requires the following:line
- The line number where the violation occurred.message
- A message describing the violation. This will be the contents of the Pull Request comment.
-
filename
- The name of the source file for the code snippet. This is provided by the inbound queue. -
commit_sha
- The git commit SHA of the code snippet. This is provided by the inbound queue. -
linter_name
- A string that identifies which linter is assigned to this linter job. This is provided by the inbound queue. -
patch
- The patch content from GitHub for the file being reviewed. This is provided by the inbound queue. -
commit_sha
- The git commit SHA of the code snippet. This is provided by the inbound queue. -
linter_name
- The name of the linter that received an invalid config file. -
pull_request_number
- The GitHub pull request number. This is provided by the inbound queue.
If you have previously run the bin/setup
script, you can deploy to staging
and production with:
% bin/deploy staging
% bin/deploy production
If you submit a Contribution to this application's source code, you hereby grant to Hound Group LLC a worldwide, royalty-free, exclusive, perpetual and irrevocable license, with the right to grant or transfer an unlimited number of non-exclusive licenses or sublicenses to third parties, under the Copyright covering the Contribution to use the Contribution by all means, including but not limited to:
- to publish the Contribution,
- to modify the Contribution, to prepare Derivative Works based upon or containing the Contribution and to combine the Contribution with other software code,
- to reproduce the Contribution in original or modified form,
- to distribute, to make the Contribution available to the public, display and publicly perform the Contribution in original or modified form.