2019-10-31 09:27:28 +08:00
<!--
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
-->
2019-09-09 11:01:24 +08:00
# Contributing to APISIX
Firstly, thanks for your interest in contributing! I hope that this will be a
pleasant first experience for you, and that you will return to continue
contributing.
## How to contribute?
Most of the contributions that we receive are code contributions, but you can
also contribute to the documentation or simply report solid bugs
for us to fix.
2020-08-07 07:57:09 +08:00
For new contributors, please take a look at issues with a tag called [Good first issue ](https://github.com/apache/apisix/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 ) or [Help wanted ](https://github.com/apache/apisix/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22 ).
2019-09-09 11:01:24 +08:00
## How to report a bug?
2020-08-07 07:57:09 +08:00
* **Ensure the bug was not already reported** by searching on GitHub under [Issues ](https://github.com/apache/apisix/issues ).
2019-09-09 11:01:24 +08:00
2020-08-07 07:57:09 +08:00
* If you're unable to find an open issue addressing the problem, [open a new one ](https://github.com/apache/apisix/issues/new ). Be sure to include a **title and clear description** , as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring.
2019-09-09 11:01:24 +08:00
## How to add a new feature or change an existing one
2020-08-07 07:57:09 +08:00
_Before making any significant changes, please [open an issue ](https://github.com/apache/apisix/issues )._ Discussing your proposed changes ahead of time will make the contribution process smooth for everyone.
2019-09-09 11:01:24 +08:00
Once we've discussed your changes and you've got your code ready, make sure that tests are passing and open your pull request. Your PR is most likely to be accepted if it:
* Update the README.md with details of changes to the interface.
* Includes tests for new functionality.
2020-03-04 09:44:17 +08:00
* References the original issue in the description, e.g. "Resolves #123 ".
2019-09-09 11:01:24 +08:00
* Has a [good commit message ](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html ).
2020-01-21 10:33:52 +08:00
## Contribution Guidelines for Documentation
2020-03-30 16:52:14 +08:00
* Linting/Style
2020-08-07 07:57:09 +08:00
Use a markdown linting tool to lint the content. The following is a [plugin ](https://github.com/apache/apisix/issues/1273 )
2020-03-30 16:52:14 +08:00
used by our community to lint the docs.
2020-01-21 10:33:52 +08:00
* Active Voice
2020-03-04 09:44:17 +08:00
In general, use active voice when formulating the sentence instead of passive voice. A sentence written in the active voice will emphasize
2020-01-21 10:33:52 +08:00
the person or thing who is performing an action (eg.The dog chased the ball). In contrast, the passive voice will highlight
2020-03-04 09:44:17 +08:00
the recipient of the action (The ball was chased by the dog). Therefore use the passive voice, only when it's less important
2020-01-21 10:33:52 +08:00
who or what completed the action and more important that the action was completed. For example:
- Recommended: The key-auth plugin authenticates the requests.
- Not recommended: The requests are authenticated by the key-auth plugin.
* Capitalization:
2020-10-14 08:32:51 +08:00
* For titles of a section, capitalize the first letter of each word except for the [closed-class words ](https://en.wikipedia.org/wiki/Part_of_speech#Open_and_closed_classes )
2020-01-21 10:33:52 +08:00
such as determiners, pronouns, conjunctions, and prepositions. Use the following [link ](https://capitalizemytitle.com/#Chicago ) for guidance.
- Recommended: Authentication **with** APISIX
2020-03-04 09:44:17 +08:00
* For normal sentences, don't [capitalize ](https://www.grammarly.com/blog/capitalization-rules/ ) random words in the middle of the sentences.
2020-01-21 10:33:52 +08:00
Use the Chicago manual for capitalization rules for the documentation.
* Second Person
In general, use second person in your docs rather than first person. For example:
- Recommended: You are recommended to use the docker based deployment.
- Not Recommended: We recommend to use the docker based deployment.
* Spellings
Use [American spellings ](https://www.oxfordinternationalenglish.com/differences-in-british-and-american-spelling/ ) when
contributing to the documentation.
* Voice
* Use a friendly and conversational tone. Always use simple sentences. If the sentence is lengthy try to break it in to smaller sentences.
2020-02-02 09:13:10 +08:00
## Check code style and test case style
* code style
2020-07-22 16:52:49 +08:00
* Please take a look at [APISIX Lua Coding Style Guide ](CODE_STYLE.md ).
2020-02-02 09:13:10 +08:00
* Use tool to check your code statically by command: `make lint` .
```shell
# install `luacheck` first before run it
$ luarocks install luacheck
# check source code
$ make lint
luacheck -q lua
Total: 0 warnings / 0 errors in 74 files
2020-03-31 23:23:29 +08:00
./utils/lj-releng \
apisix/*.lua \
apisix/admin/*.lua \
apisix/core/*.lua \
apisix/http/*.lua \
apisix/http/router/*.lua \
apisix/plugins/*.lua \
apisix/plugins/grpc-transcode/*.lua \
apisix/plugins/limit-count/*.lua > \
2020-02-02 09:13:10 +08:00
/tmp/check.log 2>& 1 || (cat /tmp/check.log & & exit 1)
```
* test case style
* Use tool to check your test case style statically by command, eg: `reindex t/admin/*.t` .
```shell
# install `reindex` first before run it
# wget https://raw.githubusercontent.com/iresty/openresty-devel-utils/master/reindex
# ./reindex test cases
$ reindex t/admin/*.t
reindex: t/plugin/example.t: skipped. # No changes needed
reindex: t/plugin/fault-injection.t: done. # updated
reindex: t/plugin/grpc-transcode.t: skipped.
... ...
reindex: t/plugin/udp-logger.t: done.
reindex: t/plugin/zipkin.t: skipped.
```
* By the way, we can download "reindex" to another path and add this path to "PATH" environment.
2019-09-09 11:01:24 +08:00
## Do you have questions about the source code?
2020-10-14 08:32:51 +08:00
- **QQ Group**: 578997126(recommended), 552030619
- Join in `apisix` channel at [Apache Slack ](http://s.apache.org/slack-invite ). If the link is not working, find the latest one at [Apache INFRA WIKI ](https://cwiki.apache.org/confluence/display/INFRA/Slack+Guest+Invites ).