-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplates.json
More file actions
115 lines (115 loc) · 4.81 KB
/
Copy pathtemplates.json
File metadata and controls
115 lines (115 loc) · 4.81 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"categories": [
{
"name": "Internal",
"description": "Internal Halerium Templates",
"templates": [
{
"name": "Default HAL-Es",
"isOverview": false,
"description": "Default HAL-Es applied for each new workspace",
"automaticArguments": {
"folder_name": ".hal-e",
"source_directory": "templates/.internal/HAL-Es",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Applications",
"description": "Halerium Applications",
"templates": [
{
"name": "Meeting Analyzer",
"isOverview": false,
"description": "The Meeting Analyzer application for recording and summarizing meetings.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"folder_name": "meeting_analyzer",
"source_directory": "templates/applications/meeting_analyzer",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Workflow",
"description": "Templates facilitating the Halerium workflow",
"templates": [
{
"name": "Data Prototype",
"isOverview": false,
"description": "Folder structure for a new data analysis prototype.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"prototype_name": "new prototype",
"source_directory": "templates/workflow_templates/new_prototype",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Data Strategy Workshop",
"isOverview": false,
"description": "Board for a new data strategy workshop",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/workflow_templates/new_workshop",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Workspaces",
"description": "Templates for Halerium workspaces",
"templates": [
{
"name": "Project Workspace",
"isOverview": false,
"description": "All files and folders for a data project workspace",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"folder_name": "__new_workspace__",
"workspace_name": "New Workspace",
"source_directory": "templates/workspace_templates/project_template",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Strategy Workspace",
"isOverview": false,
"description": "All files and folders of the data strategy workspace",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"workspace_name": "DataStrategy",
"source_directory": "templates/workspace_templates/strategy_workspace",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
}
]
}