-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Contributing guide #90
Changes from 2 commits
5ea00d8
fa061fa
6ef185e
1acd824
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
How to contribute | ||
================= | ||
|
||
Thanks for your interest in contributing to Kinto! | ||
|
||
## Reporting Bugs | ||
|
||
Report bugs at https://github.com/Kinto/kinto-http.py/issues/new | ||
|
||
If you are reporting a bug, please include: | ||
|
||
- Any details about your local setup that might be helpful in troubleshooting. | ||
- Detailed steps to reproduce the bug. | ||
|
||
|
||
## Ready to contribute? | ||
|
||
### System Requirements | ||
|
||
Depending on the platform and chosen configuration, some libraries or extra services are required. | ||
|
||
The following commands will install necessary tools for cryptography and Python packaging like Virtualenv. | ||
|
||
#### Linux | ||
On Debian / Ubuntu based systems: | ||
|
||
```bash | ||
apt-get install libffi-dev libssl-dev python-dev python-virtualenv | ||
``` | ||
|
||
#### OS X | ||
Assuming [brew](http://brew.sh/) is installed: | ||
|
||
```bash | ||
brew install libffi openssl pkg-config python | ||
|
||
pip install virtualenv | ||
``` | ||
|
||
|
||
### Getting Started | ||
|
||
- Fork the repo on GitHub. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it is best to clone from the Kinto/kinto-http.py repository and then add your remote:
Then you can:
|
||
- Clone your fork locally: | ||
|
||
```bash | ||
git clone git@github.com:your_name_here/kinto-http.py.git | ||
``` | ||
|
||
|
||
## Testing | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
You may need to use |
||
|
||
## Submitting Changes | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Then you can create a Pull-Request. You will be able to update your pull-request by adding commit in your branch. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.