This repository has been archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.cfg
101 lines (77 loc) · 3.72 KB
/
project.cfg
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
{
"name": "ToneAnalyzer",
"version": "1.0.1",
// What kind of project to build, deploy, etc
"type": "dizmo",
// Name the output of your application. Omit the '.js', it will be added automatically.
"js_name": "application",
// Default is autolint on, if you don't want that uncomment the following line.
"autolint": false,
// Provide options for linting. Check http://jshint.com/docs/options/ if you're using JSHint (the default)
// or check https://github.com/douglascrockford/JSLint if you're using jslint.
"lintoptions": {},
// The following options can be overwritten on a per-project basis. They are all
// specified in the global .graceconfig file (use "grace help" for more information)
// "deployment_path": "",
// "zip_path": "",
// "doc_path": "",
// "minify_js": false,
// "minify_css": false,
// Name for the zipped file (if different from default is required)
// "zip_name": "",
// Default store api URL.
"urls": {
"dizmo_store": "https://store-api.dizmo.com/v1"
},
// The global credentials are used if password or username are not specified here.
// Check the .graceconfig file (or type ./manage.py help for more information)
"credentials": {
// "username": "",
// "password": ""
},
// Settings for dizmo specific keys
"dizmo_settings": {
// Display name of the dizmo (title)
"display_name": "IBM Tone Analyzer",
// The readable name of the bundle
"bundle_name": "IBM Tone Analyzer",
// Short description of the dizmo
"description": "Use the Tone Analyzer dizmo to detect and interpret emotions within a text.",
// Changes made for this version of the dizmo
"change_log": "Initial version",
// The minimal dizmo space version needed to run this dizmo
"min_space_version": "0.0.0",
// Array containing the tags belonging to the dizmo
"tags": ["ibm", "watson", "cognitive", "tone", "analyzer"],
// Add the category of your dizmo. The following categories are available:
// books_and_references, comics, communication, education, entertainment, finance, games, health_and_fitness, libraries_and_demo, lifestyle, media_and_video, medical, music_and_audio, news_and_magazines, personalization, photography, productivity, shopping, social, sports, tools, transportation, travel_and_local, weather
"category": "productivity",
// The bundle identifier, should not contain anything except letters and .
"bundle_identifier": "com.ibm.toneanalyzer",
// Initial width and height of the dizmo
"width": 250,
"height": 300,
"tree_values": {
// Allows you to set attributes of each new dizmo instance to predefined values.
// Refer to the documentation (https://www.dizmo.com/docs/api-reference/dizmojs-dizmo/#setAttribute)
// as to what keys and values are allowed here.
"attributes": {},
// Provide initial key/value pairs for private and public store of each new dizmo instance.
"private": {},
"public": {}
},
// The version of dizmo elements to use (if you ommit this, no dizmo elements will be used)
"elements_version": "1.0",
// Additional plist values not included in any of the keys in here
"additional_plist_values": {},
// The following part should only be changed if you know what you are doing!
"box_inset_x": 0,
"box_inset_y": 0,
"api_version": "1.3",
"main_html": "index.html",
"hidden_dizmo": false,
"allow_resize": false,
"title_editable": true,
"force_update": false
}
}