forked from edunumsec2/book
-
Notifications
You must be signed in to change notification settings - Fork 6
/
workspace.code-workspace
105 lines (105 loc) · 2.41 KB
/
workspace.code-workspace
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
94
95
96
97
98
99
100
101
102
103
104
105
{
"folders": [
{
"path": ".",
"name": "Book",
}
],
"settings": {
"files.exclude": {
"build": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"search.exclude": {
"build": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"actionButtons": {
"defaultColor": "white",
"loadNpmCommands": false,
"commands": [
{
"name": "Start web server",
"color": "white",
"command": "source .env/bin/activate; cd build; kill -9 $(lsof -t -i:8000) 2> /dev/null; python -m http.server 8000 ",
"cwd": "${workspaceFolder}",
"singleInstance": true,
},
{
"name": "Apprendre (build)",
"color": "white",
"command": "source .env/bin/activate; sphinx-build src/appr docs -E",
"cwd": "${workspaceFolder}",
"singleInstance": true,
},
{
"name": "Enseigner (build)",
"color": "white",
"command": "source .env/bin/activate; sphinx-build src/ens docs -E",
"cwd": "${workspaceFolder}",
"singleInstance": true,
},
{
"name": "Apprendre (auto-build)",
"color": "white",
"command": "source .env/bin/activate; kill -9 $(lsof -t -i:8000) 2> /dev/null; sphinx-autobuild src/appr build --watch src --open-browser -a --delay 1",
"cwd": "${workspaceFolder}",
"singleInstance": true,
},
{
"name": "Enseigner (auto-build)",
"color": "white",
"command": "source .env/bin/activate; kill -9 $(lsof -t -i:8000) 2> /dev/null; sphinx-autobuild src/ens build --watch src --open-browser -a --delay 1",
"cwd": "${workspaceFolder}",
"singleInstance": true,
},
]
},
"files.watcherExclude": {
"**/target": true
},
"spellright.language": [
"fr"
],
"spellright.recheckOnSave": true,
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext"
],
"ltex.language": "fr"
},
"extensions": {
"recommendations": [
"ms-python.python",
"redhat.vscode-yaml",
"executablebookproject.myst-highlight",
"seunlanlege.action-buttons",
"github.vscode-pull-request-github",
"ban.spellright",
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}",
"__workspaceFolder": "."
}
]
}
}