mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 17:23:29 -05:00
* moved findTOC logic to async function * set max number of subdirectories to search * log error, change for loop syntax * hadnling edge cases
49 lines
2.1 KiB
TypeScript
49 lines
2.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
// CONFIG VALUES ///////////////////////////////////////////////////////////
|
|
export const extensionOutputChannel = 'Notebooks';
|
|
|
|
// JUPYTER CONFIG //////////////////////////////////////////////////////////
|
|
export const pythonBundleVersion = '0.0.1';
|
|
export const pythonVersion = '3.6.6';
|
|
export const sparkMagicVersion = '0.12.6.1';
|
|
export const pythonPathConfigKey = 'pythonPath';
|
|
export const existingPythonConfigKey = 'useExistingPython';
|
|
export const notebookConfigKey = 'notebook';
|
|
export const maxBookSearchDepth = 'maxBookSearchDepth';
|
|
|
|
export const winPlatform = 'win32';
|
|
|
|
export const jupyterNotebookProviderId = 'jupyter';
|
|
export const jupyterConfigRootFolder = 'jupyter_config';
|
|
export const jupyterNewNotebookTask = 'jupyter.task.newNotebook';
|
|
export const jupyterOpenNotebookTask = 'jupyter.task.openNotebook';
|
|
export const jupyterNewNotebookCommand = 'jupyter.cmd.newNotebook';
|
|
export const jupyterReinstallDependenciesCommand = 'jupyter.reinstallDependencies';
|
|
export const jupyterAnalyzeCommand = 'jupyter.cmd.analyzeNotebook';
|
|
export const jupyterManagePackages = 'jupyter.cmd.managePackages';
|
|
export const jupyterConfigurePython = 'jupyter.cmd.configurePython';
|
|
|
|
export enum BuiltInCommands {
|
|
SetContext = 'setContext'
|
|
}
|
|
|
|
export enum CommandContext {
|
|
NotebookPythonInstalled = 'notebook:pythonInstalled'
|
|
}
|
|
|
|
export enum PythonPkgType {
|
|
Pip = 'Pip',
|
|
Anaconda = 'Anaconda'
|
|
}
|
|
|
|
export const pythonOfflinePipPackagesUrl = 'https://go.microsoft.com/fwlink/?linkid=2092867';
|
|
export const pythonWindowsInstallUrl = 'https://go.microsoft.com/fwlink/?linkid=2092866';
|
|
export const pythonMacInstallUrl = 'https://go.microsoft.com/fwlink/?linkid=2092865';
|
|
export const pythonLinuxInstallUrl = 'https://go.microsoft.com/fwlink/?linkid=2092864';
|