-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from yuvipanda/doc
Add some more inline comments
- Loading branch information
Showing
3 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
# Placate our linters, which don't know c is traitlets' special sauce | ||
c = get_config() # noqa | ||
|
||
# Enable debug logs for binderhub itself | ||
c.BinderHub.debug = True | ||
|
||
# Just leave the built image in the node, so our hub can launch it | ||
c.BinderHub.use_registry = False | ||
|
||
# BinderHub is launched as a service by JupyterHub under /services/binder, | ||
# and this is also where jupyterhub-fancy-profiles looks. | ||
c.BinderHub.base_url = "/services/binder/" | ||
|
||
# We only want to build, not launch | ||
c.BinderHub.enable_api_only_mode = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters