diff options
author | Nathan Dench <ndenc2@gmail.com> | 2019-05-24 15:16:44 +1000 |
---|---|---|
committer | Nathan Dench <ndenc2@gmail.com> | 2019-05-24 15:16:44 +1000 |
commit | 107c1cdb09c575aa2f61d97f48d8587eb6bada4c (patch) | |
tree | ca7d008643efc555c388baeaf1d986e0b6b3e28c /vendor/google.golang.org/appengine/CONTRIBUTING.md | |
parent | 844b5a68d8af4791755b8f0ad293cc99f5959183 (diff) | |
download | terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.gz terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.zst terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.zip |
Upgrade to 0.12
Diffstat (limited to 'vendor/google.golang.org/appengine/CONTRIBUTING.md')
-rw-r--r-- | vendor/google.golang.org/appengine/CONTRIBUTING.md | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/vendor/google.golang.org/appengine/CONTRIBUTING.md b/vendor/google.golang.org/appengine/CONTRIBUTING.md new file mode 100644 index 0000000..ffc2985 --- /dev/null +++ b/vendor/google.golang.org/appengine/CONTRIBUTING.md | |||
@@ -0,0 +1,90 @@ | |||
1 | # Contributing | ||
2 | |||
3 | 1. Sign one of the contributor license agreements below. | ||
4 | 1. Get the package: | ||
5 | |||
6 | `go get -d google.golang.org/appengine` | ||
7 | 1. Change into the checked out source: | ||
8 | |||
9 | `cd $GOPATH/src/google.golang.org/appengine` | ||
10 | 1. Fork the repo. | ||
11 | 1. Set your fork as a remote: | ||
12 | |||
13 | `git remote add fork git@github.com:GITHUB_USERNAME/appengine.git` | ||
14 | 1. Make changes, commit to your fork. | ||
15 | 1. Send a pull request with your changes. | ||
16 | The first line of your commit message is conventionally a one-line summary of the change, prefixed by the primary affected package, and is used as the title of your pull request. | ||
17 | |||
18 | # Testing | ||
19 | |||
20 | ## Running system tests | ||
21 | |||
22 | Download and install the [Go App Engine SDK](https://cloud.google.com/appengine/docs/go/download). Make sure the `go_appengine` dir is in your `PATH`. | ||
23 | |||
24 | Set the `APPENGINE_DEV_APPSERVER` environment variable to `/path/to/go_appengine/dev_appserver.py`. | ||
25 | |||
26 | Run tests with `goapp test`: | ||
27 | |||
28 | ``` | ||
29 | goapp test -v google.golang.org/appengine/... | ||
30 | ``` | ||
31 | |||
32 | ## Contributor License Agreements | ||
33 | |||
34 | Before we can accept your pull requests you'll need to sign a Contributor | ||
35 | License Agreement (CLA): | ||
36 | |||
37 | - **If you are an individual writing original source code** and **you own the | ||
38 | intellectual property**, then you'll need to sign an [individual CLA][indvcla]. | ||
39 | - **If you work for a company that wants to allow you to contribute your work**, | ||
40 | then you'll need to sign a [corporate CLA][corpcla]. | ||
41 | |||
42 | You can sign these electronically (just scroll to the bottom). After that, | ||
43 | we'll be able to accept your pull requests. | ||
44 | |||
45 | ## Contributor Code of Conduct | ||
46 | |||
47 | As contributors and maintainers of this project, | ||
48 | and in the interest of fostering an open and welcoming community, | ||
49 | we pledge to respect all people who contribute through reporting issues, | ||
50 | posting feature requests, updating documentation, | ||
51 | submitting pull requests or patches, and other activities. | ||
52 | |||
53 | We are committed to making participation in this project | ||
54 | a harassment-free experience for everyone, | ||
55 | regardless of level of experience, gender, gender identity and expression, | ||
56 | sexual orientation, disability, personal appearance, | ||
57 | body size, race, ethnicity, age, religion, or nationality. | ||
58 | |||
59 | Examples of unacceptable behavior by participants include: | ||
60 | |||
61 | * The use of sexualized language or imagery | ||
62 | * Personal attacks | ||
63 | * Trolling or insulting/derogatory comments | ||
64 | * Public or private harassment | ||
65 | * Publishing other's private information, | ||
66 | such as physical or electronic | ||
67 | addresses, without explicit permission | ||
68 | * Other unethical or unprofessional conduct. | ||
69 | |||
70 | Project maintainers have the right and responsibility to remove, edit, or reject | ||
71 | comments, commits, code, wiki edits, issues, and other contributions | ||
72 | that are not aligned to this Code of Conduct. | ||
73 | By adopting this Code of Conduct, | ||
74 | project maintainers commit themselves to fairly and consistently | ||
75 | applying these principles to every aspect of managing this project. | ||
76 | Project maintainers who do not follow or enforce the Code of Conduct | ||
77 | may be permanently removed from the project team. | ||
78 | |||
79 | This code of conduct applies both within project spaces and in public spaces | ||
80 | when an individual is representing the project or its community. | ||
81 | |||
82 | Instances of abusive, harassing, or otherwise unacceptable behavior | ||
83 | may be reported by opening an issue | ||
84 | or contacting one or more of the project maintainers. | ||
85 | |||
86 | This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, | ||
87 | available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) | ||
88 | |||
89 | [indvcla]: https://developers.google.com/open-source/cla/individual | ||
90 | [corpcla]: https://developers.google.com/open-source/cla/corporate | ||