-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
52 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Contribution Guide | ||
|
||
Welcome and thank you for considering contributing to PyGorse! | ||
|
||
Reading and following these guidelines will help us make the contribution process easy and effective for everyone involved. It also communicates that you agree to respect the time of the developers managing and developing these open source projects. In return, we will reciprocate that respect by addressing your issue, assessing changes, and helping you finalize your pull requests. | ||
|
||
## Getting Started | ||
|
||
### Setup Develop Environment | ||
|
||
These following installations are required: | ||
|
||
- **Python 3.8+**: The minimum version of Python required to run PyGorse. | ||
- **Docker Compose**: Start a local Gorse cluster for testing. | ||
|
||
After installing the required software, run the following commands: | ||
|
||
```bash | ||
# Install tox | ||
pip install tox | ||
|
||
# Start a local Gorse cluster | ||
docker-compose up -d | ||
``` | ||
|
||
### Run Unit Tests | ||
|
||
```bash | ||
tox | ||
``` | ||
|
||
## Your First Contribution | ||
|
||
### Contribution Workflow | ||
|
||
To contribute to the Gorse code base, please follow the workflow as defined in this section. | ||
|
||
- Fork the repository to your own Github account | ||
- Make commits and add test case if the change fixes a bug or adds new functionality. | ||
- Run tests and make sure all the tests are passed. | ||
- Push your changes to a topic branch in your fork of the repository. | ||
- Submit a pull request. | ||
|
||
This is a rough outline of what a contributor's workflow looks like. Thanks for your contributions! | ||
|
||
## Getting Help | ||
|
||
Join us in the [Discord](https://discord.gg/x6gAtNNkAE) and post your question in the `#developers` channel. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters