-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlaskTasksManager.code-workspace
More file actions
93 lines (89 loc) · 2.91 KB
/
FlaskTasksManager.code-workspace
File metadata and controls
93 lines (89 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"folders": [
{
"path": "."
},
{
"path": "core"
},
{
"path": "docker"
},
{
"path": "media"
},
{
"path": "mytestunity"
},
],
// Controls the settings that apply to all profiles :
"settings": {
"workbench.settings.applyToAllProfiles": [
"terminal.integrated.cwd"
],
"terminal.integrated.cwd": "d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager",
"workbench.editor.languageDetection": true,
"files.autoSave": "afterDelay",
"diffEditor.renderSideBySide": true,
"breadcrumbs.enabled": true,
"editor.minimap.enabled": true,
"python.defaultInterpreterPath": "D:\\anaconda.resources\\anaconda.environments\\flask_env",
"python.envFile": "d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager\\project.env",
"python.experiments.enabled": true,
"python.experiments.optInto": [],
"python.experiments.optOutFrom": [],
"python.globalModuleInstallation": false,
"python.analysis.aiCodeActions": {},
"python.analysis.extraPaths": [
"${workspaceFolder}",
"${fileDirname}"
],
"projectManager.any.baseFolders": [
"d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager"
],
"projectManager.tags": [
"Ricardo Pirabed",
"Web Development",
],
"projectManager.git.baseFolders": [
"d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager"
],
"projectManager.vscode.baseFolders": [
"d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager"
]
},
// Add debuging configurations to project :
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Module: FlaskTasksManager",
"type": "debugpy",
"request": "launch",
"module": "FlaskTasksManager",
"env": {"PYTHONPATH": "d:\\vscode.workspaces\\ricardo.pirabed.github\\Python Web\\flask\\project\\FlaskTasksManager"},
"console": "integratedTerminal"
}
],
"compounds": []
},
// Automate project tasks :
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "My Task",
"command": "echo hello",
"type": "shell",
"args": [],
"problemMatcher": [
"$tsc"
],
"presentation": {
"reveal": "always"
},
"group": "build"
}
]
}
}