Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Latest commit

 

History

History
50 lines (42 loc) · 3.46 KB

1-INSTALL.md

File metadata and controls

50 lines (42 loc) · 3.46 KB

Installing developer tools and environments

Setting up GitHub environment

  1. Log in to GitHub.
  2. Update your profile page.
  3. Install a Git client
  4. (macOS and Windows) Follow the instructions and setup GitHub Desktop.
    • Note to Windows users: In case Firefox cannot handle the operation, copy and paste the URL into another browser.
  5. Define your Git identification credentials according to your profile page.
    • macOS and Windows: Under Preferences / Options, go to the Git tab and fill in your Name and Email address.
    • Fedora: Open a terminal and enter
      git config --global user.name "Your Name"
      git config --global user.email "[email protected]"
  6. (macOS) Open GitHub Desktop and click Install Command Line Tool....

Setting up Travis CI

  1. Go to Travis CI.
  2. Click Sign up with GitHub and authorize the integration.
  3. Click the Activate button to enable the GitHub Apps Integration.
  4. Select the agile-tutorial repository and Aprove & Install the integration.
  5. Click the Sync account button on the top-left corner.
  6. Access the neumannrf/agile-tutorial dashboard.
  7. Analyze the steps of the latest build log and compare it to the commands in the .travis.yml file.
  8. Check the status of each build in the Branches tab.
  9. Check the status of each Pull Request in the Pull Request tab.

Setting up ZenHub

  1. Go to the ZenHub Browser Extension page.
  2. Install the appropriate browser extension (only for Google Chrome and Firefox).
  3. Sign in with your GitHub credentials.
  4. Select neumannrf as organization and agile-tutorial as repository in the web app or the ZenHub tab using the browser extension.

Installing Visual Studio Code

  1. Go to Visual Studio Code download page.
  2. Choose the installer according to your operational system and follow the instructions.
    • Note to macOS users: You can also do brew cask install visual-studio-code.
  3. Open Visual Studio Code and install extensions
    • Python: click "Install" or hit Ctrl + P and enter ext install ms-python.python.
    • Output Colorizer: click "Install" or hit Ctrl + P and enter ext install IBM.output-colorizer.
    • EditorConfig for VS Code: click "Install" or hit Ctrl + P and enter ext install EditorConfig.