source{d} projects accept contributions via GitHub pull requests. This document outlines some of the conventions on development workflow, commit message formatting, contact points, and other resources to make it easier to get your contribution accepted.
To build lookout binary run:
make buildTo build sdk & dummy analyzer run:
build-sdk- Go code from proto files:
make protogen - Go code from models:
go generate ./... - Migrations:
-
kallax migrate --input ./store/models/ --out ./store/migrations --name <name> -
To update go-bindata with the new migration files:
make dependencies make bindata
-
For unit-tests run:
make testFor SDK integration tests:
make test-sdkFor lookout serve integration tests:
make test-jsonTo publish the dummy analyzer container you need to create a tag with the dummy prefix, e.g. dummy-v0.0.1. Please note this this doesn't require to do a GitHub release, we just need the Git tag.
A normal release tag will not publish this container.
By contributing to this project you agree to the Developer Certificate of Origin (DCO). This document was created by the Linux Kernel community and is a simple statement that you, as a contributor, have the legal right to make the contribution.
In order to show your agreement with the DCO you should include at the end of commit message,
the following line: Signed-off-by: John Doe <john.doe@example.com>, using your real name.
This can be done easily using the -s flag on the git commit.
If you find yourself pushed a few commits without Signed-off-by, you can still add it afterwards. We wrote a manual which can help: fix-DCO.md.
The official support channels, for both users and contributors, are:
- GitHub issues: each repository has its own list of issues.
- Slack: join the source{d} Slack community.
*Before opening a new issue or submitting a new pull request, it's helpful to search the project - it's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware of.
Pull Requests (PRs) are the main and exclusive way to contribute code to source{d} projects. In order for a PR to be accepted it needs to pass a list of requirements:
- The contribution must be correctly explained with natural language and providing a minimum working example that reproduces it.
- All PRs must be written idiomaticly:
- They should in general include tests, and those shall pass.
- If the PR is a bug fix, it has to include a new unit test that fails before the patch is merged.
- If the PR is a new feature, it has to come with a suite of unit tests, that tests the new functionality.
- In any case, all the PRs have to pass the personal evaluation of at least one of the maintainers of the project.
Every commit message should describe what was changed, under which context and, if applicable, the GitHub issue it relates to:
plumbing: packp, Skip argument validations for unknown capabilities. Fixes #623
The format can be described more formally as follows:
<package>: <subpackage>, <what changed>. [Fixes #<issue-number>]