-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpinokio.js
More file actions
64 lines (64 loc) · 1.75 KB
/
Copy pathpinokio.js
File metadata and controls
64 lines (64 loc) · 1.75 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
module.exports = {
version: "4.0",
title: "Prototype",
menu: [{
image: "empty/icon.png",
text: "Empty Project",
href: "empty/index.js",
readme: "empty/README.md",
}, {
image: "python/python.png",
text: "Python Project",
menu: [{
text: "New Python Project",
href: "python/new/index.js",
readme: "python/new/README.md"
}, {
text: "New Gradio + Pytorch Project",
href: "python/new_gradio_pytorch/index.js",
readme: "python/new_gradio_pytorch/README.md"
}, {
text: "New Pytorch Project",
href: "python/new_pytorch/index.js",
readme: "python/new_pytorch/README.md"
}, {
text: "Clone a Python Project",
href: "python/clone/index.js",
readme: "python/clone/README.md"
}, {
text: "Clone a Python Project (Pytorch)",
description: "Clone a python project that uses Pytorch",
href: "python/clone_pytorch/index.js",
readme: "python/clone_pytorch/README.md"
}]
}, {
image: "nodejs/nodejs.png",
text: "Node.js Project",
menu: [{
text: "New Node.js Project",
href: "nodejs/new/index.js",
readme: "nodejs/new/README.md"
}, {
text: "Clone a Node.js Project",
href: "nodejs/clone/index.js",
readme: "nodejs/clone/README.md"
}]
}, {
image: "cli/minimal.png",
text: "CLI App Launcher",
menu: [{
text: "Instant CLI Launcher",
href: "cli/instant/index.js",
readme: "cli/instant/README.md"
}, {
text: "Installable CLI Launcher",
href: "cli/installable/index.js",
readme: "cli/installable/README.md"
}]
}, {
image: "docsify/icon.png",
text: "Instant Documentation",
href: "docsify/index.js",
readme: "docsify/README.md"
}]
}