2014-09-25 21:06:06 +00:00
|
|
|
### Contributing ###
|
|
|
|
|
|
|
|
Thank you for your interest in `loopback-connector-remote`, an open source project
|
|
|
|
administered by StrongLoop.
|
|
|
|
|
2014-10-02 01:07:22 +00:00
|
|
|
Contributing to `loopback-connector-remote` is easy. In a few simple steps:
|
2014-09-25 21:06:06 +00:00
|
|
|
|
2014-10-02 01:07:22 +00:00
|
|
|
* Ensure that your effort is aligned with the project's roadmap by
|
2014-09-25 21:06:06 +00:00
|
|
|
talking to the maintainers, especially if you are going to spend a
|
2014-10-02 01:07:22 +00:00
|
|
|
lot of time on it.
|
2014-09-25 21:06:06 +00:00
|
|
|
|
|
|
|
* Make something better or fix a bug.
|
|
|
|
|
2014-10-02 01:07:22 +00:00
|
|
|
* Adhere to code style outlined in the [Google C++ Style Guide][] and
|
2014-09-25 21:06:06 +00:00
|
|
|
[Google Javascript Style Guide][].
|
|
|
|
|
2014-12-29 16:27:46 +00:00
|
|
|
* Sign the [Contributor License Agreement](https://cla.strongloop.com/agreements/strongloop/loopback-connector-remote)
|
2014-09-25 21:06:06 +00:00
|
|
|
|
|
|
|
* Submit a pull request through Github.
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-21 01:22:09 +00:00
|
|
|
### Developer Certificate of Origin
|
2014-09-25 21:06:06 +00:00
|
|
|
|
2020-08-21 01:22:09 +00:00
|
|
|
This project uses [DCO](https://developercertificate.org/). Be sure to sign off
|
|
|
|
your commits using the `-s` flag or adding `Signed-off-By: Name<Email>` in the
|
|
|
|
commit message.
|
2014-09-25 21:06:06 +00:00
|
|
|
|
2020-08-21 01:22:09 +00:00
|
|
|
**Example**
|
2014-09-25 21:06:06 +00:00
|
|
|
|
|
|
|
```
|
2020-08-21 01:22:09 +00:00
|
|
|
git commit -s -m "feat: my commit message"
|
|
|
|
```
|
|
|
|
|
|
|
|
Also see the [Contributing to LoopBack](https://loopback.io/doc/en/contrib/code-contrib.html) to get you started.
|
2014-09-25 21:06:06 +00:00
|
|
|
|
2016-07-14 00:33:12 +00:00
|
|
|
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
|
|
|
|
[Google Javascript Style Guide]: https://google.github.io/styleguide/javascriptguide.xml
|