generated from movestore/Template_Python_App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappspec.json
More file actions
67 lines (66 loc) · 1.45 KB
/
appspec.json
File metadata and controls
67 lines (66 loc) · 1.45 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
{
"version": "1.2",
"settings": [
{
"id": "aux_id_A",
"name": "Your message",
"description": "You can personalize the app by providing a file.",
"type": "USER_FILE"
},
{
"id": "aux_id_B",
"name": "My auxiliary zipfile",
"description": "Files for running the XY analysis. The App expects a zipped file set with the extension: 1. `.cpg`, 2. `.dbf`, 3. `.prj`, 4. `.shp`, 5. `.shx`.",
"type": "USER_FILE"
},
{
"id": "year",
"name": "The year",
"description": "Enter the year for which you want to keep the data",
"defaultValue": 2024,
"type": "INTEGER"
}
],
"providedAppFiles": [
{
"settingId": "aux_id_A",
"from": "resources/auxiliary/user-files/provided-app-files/aux_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"
}
]
}