timnlupo / pull-requests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jupyterlab-pullrequests

Stability Experimental Build Status Version Version

A JupyterLab extension for reviewing pull requests

Prerequisites

  • JupyterLab 1.0+

Usage

  • Open the pull request extension from the tab on the left panel

Installation

1. Install the extension with the following steps

jupyter labextension install @jupyterlab/pullrequests
pip install --upgrade jupyterlab-pullrequests
jupyter serverextension enable --py jupyterlab_pullrequests

2. Getting your access token from GitHub

You can get an access token by following these steps:

  1. Verify your email address with GitHub.
  2. Go to your account settings on GitHub and select "Developer Settings" from the left panel.
  3. On the left, select "Personal access tokens"
  4. Click the "Generate new token" button, and enter your password.
  5. Give the token a description, and check the "repo" scope box.
  6. Click "Generate token"
  7. You should be given a string which will be your access token.

Remember that this token is effectively a password for your GitHub account. Do not share it online or check the token into version control, as people can use it to access all of your data on GitHub.

3. Setting your access token in JupyterLab Pull Requests

You now need to add the credentials you got from GitHub to your notebook configuration file. Instructions for generating a configuration file can be found here. Once you have identified this file, add the following lines to it:

c.GitHubConfig.access_token = '<YOUR_ACCESS_TOKEN>'

where "<YOUR_ACCESS_TOKEN>" is the string value you obtained above.

Congrats, you did it! Launch JupyterLab and look for the Pull Request tab on the left! 🎉

Development

Contributing

If you would like to contribute to the project, please read our contributor documentation.

JupyterLab follows the official Jupyter Code of Conduct.

Install

For a development install, do the following in the repository directory:

# Install dependencies
jlpm install
# Build Typescript source
jlpm run build
# Link your development version of the extension with JupyterLab
jupyter labextension link .
# Rebuild Typescript source after making changes
jlpm run build
pip install .
jupyter serverextension enable --py jupyterlab_pullrequests

To rebuild the package and the JupyterLab app:

jlpm run build
jupyter lab build

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:TypeScript 53.4%Language:Python 35.4%Language:CSS 9.7%Language:JavaScript 1.5%