Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@ To install the both the server extension and (prebuilt) lab extension, enter the
pip install jupyterlab-github
```

Alternatively, build from source and install with:

```bash
pip install .
```

Upon successful installation, `jupyterlab_github` should appear in the list of extensions:

```bash
jupyter labextension list
JupyterLab v3.6.4
/opt/conda/share/jupyter/labextensions
@jupyterlab/github v3.0.1 enabled OK (python, jupyterlab_github)
```

After restarting JupyterLab, the extension should work, and you can experience
the joys of being rate-limited first-hand!

Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"declaration": true,
"lib": ["es2015", "dom", "esnext.asynciterable"],
"noImplicitAny": true,
"strictNullChecks": true,
"noEmitOnError": true,
Expand All @@ -18,7 +19,8 @@
"rootDir": "src",
"strict": true,
"types": [],
"jsx": "react"
"jsx": "react",
"skipLibCheck": true
},
"include": ["src/*"]
}