This repository was archived by the owner on Jul 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgenerator.json
More file actions
71 lines (66 loc) · 2.34 KB
/
generator.json
File metadata and controls
71 lines (66 loc) · 2.34 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
{
"pageTitle": "Labs Node.js",
"repository": "https://github.com/NodeAndTyped/labs-nodejs/",
"pdfName": "labs.pdf",
"branch": "master",
"checkout": {
"branchs": [
"tp1-installation",
"tp2-provided",
"tp2-solution",
"tp3-installation-provided",
"tp3-installation-solution",
"tp3-exercice-solution",
"tp4-exercice-4-solution",
"tp4-installation-provided",
"tp4-installation-solution",
"tp5-provided",
"tp6-provided"
]
},
"concat": {
"files": [
{"title": "Accueil", "cwd":"${root}/src", "path": "index.md"},
{"title": "TP1 - Installation de l'environnement", "cwd":"${root}/src", "path": "tp1-installation.md"},
{"title": "TP2 - Gestion des fichiers", "cwd":"${root}/src", "path": "tp2-file-system-et-events.md"},
{"title": "TP3 - Mise en place du serveur Express", "cwd":"${root}/src", "path": "tp3-express-installation.md"},
{"title": "TP4 - Templating avec EJS", "cwd":"${root}/src", "path": "tp4-express-ejs.md"},
{"title": "TP5 - Middlewares, Formulaire & Services", "cwd":"${root}/src", "path": "tp5-express-middlewares-form-services.md"},
{"title": "TP6 - SquareGame avec Socket.io", "cwd":"${root}/src", "path": "tp6-squaregame-socketio.md"},
{"title": "TP7 - Les promises", "cwd":"${root}/src", "path": "tp7-promise.md"},
{"title": "TP8 - Base de données Mongo", "cwd":"${root}/src", "path": "tp8-base-de-donnees-mongo.md"},
{"title": "TP9 - Test unitaires", "cwd":"${root}/src", "path": "tp9-tests-unitaires.md"},
{"title": "Aide - importation des modules", "cwd":"${root}/src", "path": "aide-importation-module.md"}
]
},
"copy": [
{"from": "${root}/src/images", "to": "images"}
],
"outDir": [
{
"format": "html",
"path": "${root}/dist/Instructor/html",
"resources": "${root}/dist/Resources"
},
{
"format": "pdf",
"path": "${root}/dist/Instructor/pdf",
"resources": "${root}/dist/Resources"
},
{
"format": "ebook",
"path": "${root}/dist/Student/ebook",
"resources": "${root}/dist/Resources"
},
{
"format": "pdf",
"path": "${root}/dist/Student/pdf",
"resources": "${root}/dist/Resources"
},
{
"format": "html",
"path": "${root}/docs",
"resources": "${root}/docs/resources"
}
]
}