-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappspec.json
More file actions
77 lines (77 loc) · 1.6 KB
/
appspec.json
File metadata and controls
77 lines (77 loc) · 1.6 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
{
"version": "1.2",
"settings": [
{
"id": "sdk",
"name": "The name of the MoveApps SDK",
"description": "Showcase requesting a string input from the users of your app.",
"defaultValue": "MoveApps SDK",
"type": "STRING"
},
{
"id": "year",
"name": "The year",
"description": "Insert description for the year setting setting",
"defaultValue": 2022,
"type": "INTEGER"
},
{
"id": "auxiliary-file-a",
"name": "Personalization",
"description": "You can personalize the app by providing a file",
"type": "USER_FILE"
}
],
"dependencies": {
"R": [
{
"name": "lubridate"
},
{
"remotes": "install_git('https://gitlab.com/bartk/move2.git')"
}
]
},
"providedAppFiles": [
{
"settingId": "auxiliary-file-a",
"from": "data/auxiliary/user-files/provided-app-files/auxiliary-file-a/sample.txt"
}
],
"license": {
"key": "MIT"
},
"language": "eng",
"keywords": [
"example",
"template"
],
"people": [
{
"firstName": "Charles",
"middleInitials": null,
"lastName": "Darwin",
"email": "creator@example.com",
"roles": [
"author",
"creator"
],
"orcid": null,
"affiliation": null,
"affiliationRor": null
}
],
"funding": [
{
"name": "funder name",
"comment": "grant for App"
}
],
"references": [
{
"type": "IsDescribedBy",
"note": "Darwin, C. 1900. The creation. Journal XY. 1-2",
"url": "https://anylink.xyz"
}
]
}