Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Setup JIRA on your host
    • Install Jira packages - sudo pip install jira
    • Set the JIRA_USERNAME and JIRA_PASSWORD environment variables with the appropriate credentials for interacting with Jira. This is required to correctly close the JIRA associated with the PR
  2. Setup aliases for the remote repositories:(Samza Github repo and Apache Samza Repo)
    • Add ASF git repo for committing the PR 

      Code Block
      languagebash
      git remote add samza-apache https://
      git­wip­us
      git-wip-us.apache.org/repos/asf/samza.git 
    • Add Github repo for fetching the patch from the PR 
      Code Block
      languagebash
      git remote add samza-github https://github.com/apache/samza.git
  3. Set up API tokens for Git
    • Create an OAuth key for making requests to the GitHub API. If this is not defined, then requests will be unauthenticated and you can’t access the API. An OAuth key for the API can be created at https://github.com/settings/tokens
    • Set the created OAuth key as GITHUB_OAUTH_KEY environment variable.

...