mirror of
https://github.com/swift-server/RediStack.git
synced 2026-05-03 07:32:28 +00:00
04aa1f93a3
Motivation: To give a better first impression, and providing more comprehensive information for first time viewers, the README file needed reworking. Modifications: - Add a CHANGELOG file that at least redirects readers to the releases page of GitLab - Update the CONTRIBUTORS list - Change project README to have more information, flow better, and to have a better "first impression" Result: The README should give a stronger indication into the project's health.
48 lines
1.7 KiB
Markdown
48 lines
1.7 KiB
Markdown
## Legal
|
|
|
|
By submitting a pull request, you represent that you have the right to license your contribution to the community, and agree by submitting the patch
|
|
that your contributions are licensed under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html) (see [`LICENSE`](../LICENSE)).
|
|
|
|
## Submitting a Bug
|
|
|
|
Please ensure to specify the following:
|
|
|
|
* **RediStack** commit hash
|
|
* Simplest possible steps to reproduce
|
|
* A pull request with a failing test case is preferred, but it's just as fine to write it in the issue description
|
|
* Environment Information
|
|
* For example, are you running in Docker? How are you connecting to it through Docker? What version of Docker?
|
|
* OS version and output of `uname -a`
|
|
* Swift version or output of `swift --version`
|
|
|
|
## Development
|
|
|
|
### Git Workflow
|
|
|
|
`master` is always the development branch.
|
|
|
|
For **minor** or **patch** SemVer changes, create a branch off of the tagged commit.
|
|
|
|
### Environment Setup
|
|
|
|
It is highly recommended to use [Docker](https://docker.com) to install Redis locally.
|
|
|
|
```bash
|
|
docker run -d -p 6379:6379 --name redis redis:5
|
|
```
|
|
|
|
Otherwise, install Redis directly on your machine from [Redis.io](https://redis.io/download).
|
|
|
|
### Submitting a Pull Request
|
|
|
|
A great PR that is likely to be merged quickly is:
|
|
|
|
1. Concise, with as few changes as needed to achieve the end result.
|
|
1. Tested, ensuring that regressions aren't introduced now or in the future.
|
|
1. Documented, adding API documentation as needed to cover new functions and properties.
|
|
1. Accompanied by a [great commit message](https://chris.beams.io/posts/git-commit/)
|
|
|
|
# Contributor Conduct
|
|
|
|
All contributors are expected to adhere to this project's [Code of Conduct](CODE_OF_CONDUCT.md).
|