Skip to content

Latest commit

 

History

History
87 lines (66 loc) · 5.37 KB

contributing.md

File metadata and controls

87 lines (66 loc) · 5.37 KB

Contributing to Compose

👍🎉 First off, thank you for taking the time to contribute! 🎉👍

Whether you are a novice or experienced software developer, all contributions and suggestions are welcome!

There are many ways to contribute to Compose, with the most common ones being contribution of code or documentation to the project.

To contribute, you can:

  1. Help users on our Slack channel. Answer questions under the compose tag on Stack Overflow

  2. Submit a pull request for one of Good First Issues

  3. Make changes to the codebase, see Contributing to the codebase.

  4. Improve our documentation, which can be found under the docs directory or at https://compose.alteryx.com/en/stable/

  5. Report issues you're facing, and give a "thumbs up" on issues that others reported and that are relevant to you. Issues should be used for bugs, and feature requests only.

  6. Spread the word: reference Compose from your blog and articles, link to it from your website, or simply star it in Compose GitHub page to say "I use it".

Contributing to the Codebase

Before starting major work, you should touch base with the maintainers of Compose by filing an issue on GitHub or posting a message in the #development channel on Slack. This will increase the likelihood your pull request will eventually get merged in.

1. Fork and clone repo

  • The code is hosted on GitHub, so you will need to use Git to fork the project and make changes to the codebase. To start, go to the Compose GitHub page and click the Fork button.
  • After you have created the fork, you will want to clone the fork to your machine and connect your version of the project to the upstream Compose repo.
    git clone https://github.com/your-user-name/compose.git
    cd compose
    git remote add upstream https://github.com/alteryx/compose
  • Once you have obtained a copy of the code, you should create a development environment that is separate from your existing Python environment so that you can make and test changes without compromising your own work environment. You can run the following steps to create a separate virtual environment, and install Compose in editable mode.
    python -m venv venv
    source venv/bin/activate
    make installdeps
    git checkout -b issue####-branch_name

2. Implement your Pull Request

  • Implement your pull request. If needed, add new tests or update the documentation.
  • Before submitting to GitHub, verify the tests run and the code lints properly
    # runs linting
    make lint
    
    # will fix some common linting issues automatically
    make lint-fix
    
    # runs test
    make test
  • If you made changes to the documentation, build the documentation locally.
    # go to docs and build
    cd docs
    make html
    
    # view docs locally
    open build/html/index.html

3. Submit your Pull Request

  • Once your changes are ready to be submitted, make sure to push your changes to GitHub before creating a pull request.

  • If you need to update your code with the latest changes from the main Compose repo, you can do that by running the commands below, which will merge the latest changes from the Compose main branch into your current local branch. You may need to resolve merge conflicts if there are conflicts between your changes and the upstream changes. After the merge, you will need to push the updates to your forked repo after running these commands.

    git fetch upstream
    git merge upstream/main
  • Create a pull request to merge the changes from your forked repo branch into the Compose main branch. Creating the pull request will automatically run our continuous integration.

  • If this is your first contribution, you will need to sign the Contributor License Agreement as directed.

  • Update the "Future Release" section of the release notes (docs/source/release_notes.rst) to include your pull request and add your github username to the list of contributors. Add a description of your PR to the subsection that most closely matches your contribution:

    • Enhancements: new features or additions to Compose.
    • Fixes: things like bugfixes or adding more descriptive error messages.
    • Changes: modifications to an existing part of Compose.
    • Documentation Changes
    • Testing Changes

    Documentation or testing changes rarely warrant an individual release notes entry; the PR number can be added to their respective "Miscellaneous changes" entries.

  • We will review your changes, and you will most likely be asked to make additional changes before it is finally ready to merge. However, once it's reviewed by a maintainer of Compose, passes continuous integration, we will merge it, and you will have successfully contributed to Compose!

Report issues

When reporting issues please include as much detail as possible about your operating system, Compose version and python version. Whenever possible, please also include a brief, self-contained code example that demonstrates the problem.