-
Notifications
You must be signed in to change notification settings - Fork 3
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 #38 from briank-git/main
Update DSCI 100 R and Python Docker Images
- Loading branch information
Showing
6 changed files
with
130 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[pull] | ||
rebase = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Configuration file for jupyter-server. | ||
|
||
c = get_config() #noqa | ||
|
||
#------------------------------------------------------------------------------ | ||
# ContentsManager(LoggingConfigurable) configuration | ||
#------------------------------------------------------------------------------ | ||
## Base class for serving files and directories. | ||
# | ||
# This serves any text or binary file, | ||
# as well as directories, | ||
# with special handling for JSON notebook documents. | ||
# | ||
# Most APIs take a path argument, | ||
# which is always an API-style unicode path, | ||
# and always refers to a directory. | ||
# | ||
# - unicode, not url-escaped | ||
# - '/'-separated | ||
# - leading and trailing '/' will be stripped | ||
# - if unspecified, path defaults to '', | ||
# indicating the root path. | ||
|
||
## Allow access to hidden files | ||
# Default: False | ||
c.ContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# FileContentsManager(FileManagerMixin, ContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.FileContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# AsyncContentsManager(ContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Base class for serving files and directories asynchronously. | ||
|
||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.AsyncContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# AsyncFileContentsManager(FileContentsManager, AsyncFileManagerMixin, AsyncContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.AsyncFileContentsManager.allow_hidden = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[pull] | ||
rebase = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Configuration file for jupyter-server. | ||
|
||
c = get_config() #noqa | ||
|
||
#------------------------------------------------------------------------------ | ||
# ContentsManager(LoggingConfigurable) configuration | ||
#------------------------------------------------------------------------------ | ||
## Base class for serving files and directories. | ||
# | ||
# This serves any text or binary file, | ||
# as well as directories, | ||
# with special handling for JSON notebook documents. | ||
# | ||
# Most APIs take a path argument, | ||
# which is always an API-style unicode path, | ||
# and always refers to a directory. | ||
# | ||
# - unicode, not url-escaped | ||
# - '/'-separated | ||
# - leading and trailing '/' will be stripped | ||
# - if unspecified, path defaults to '', | ||
# indicating the root path. | ||
|
||
## Allow access to hidden files | ||
# Default: False | ||
c.ContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# FileContentsManager(FileManagerMixin, ContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.FileContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# AsyncContentsManager(ContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Base class for serving files and directories asynchronously. | ||
|
||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.AsyncContentsManager.allow_hidden = True | ||
|
||
#------------------------------------------------------------------------------ | ||
# AsyncFileContentsManager(FileContentsManager, AsyncFileManagerMixin, AsyncContentsManager) configuration | ||
#------------------------------------------------------------------------------ | ||
## Allow access to hidden files | ||
# See also: ContentsManager.allow_hidden | ||
c.AsyncFileContentsManager.allow_hidden = True |