-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.json
81 lines (74 loc) · 1.72 KB
/
config.json
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
{
"name" : "gazebo",
"include" :
[
{
"path" : "${QOOXDOO_PATH}/tool/data/config/application.json"
}
],
"export" :
[
"api",
"build",
"clean",
"distclean",
"fix",
"info",
"inspector",
"lint",
"migration",
"pretty",
"profiling",
"source",
"source-all",
"test",
"test-source",
"translation"
],
"let" :
{
"APPLICATION" : "gazebo",
"QOOXDOO_PATH" : "./support/qooxdoo",
"QXTHEME" : "gazebo.theme.Theme",
"API_EXCLUDE" : ["qx.test.*", "${APPLICATION}.theme.*", "${APPLICATION}.test.*"],
"LOCALES" : [ "en" ],
"CACHE" : "${TMPDIR}/cache",
"ROOT" : "."
},
"jobs" :
{
"libraries" :
{
"library" :
[
{
// Manifest file of the main contribution to the framework.
"manifest" : "flystockdb.json"
}
]
},
"build-script" :
{
"settings" :
{
// Introduces the name of the main contribution class to the
// framework. This class needs to implement gazebo.IDelegator.
"gazebo.contributions" : [ "gazebo.fly.Contribution" ],
// Address of the web-server.
"gazebo.server.protocol" : [ "http" ],
"gazebo.server.hostname" : [ "localhost" ],
"gazebo.server.port" : [ 8080 ],
"gazebo.server.interface" : [ "fcgi" ],
// Overwrite the default hostname and port for the database.
"gazebo.database.hostname" : [ "localhost" ],
"gazebo.database.port" : [ 5432 ]
},
"require" :
{
// Introduces the name of the main contribution class to the
// framework.
"gazebo.Application" : [ "gazebo.fly.Contribution" ]
}
}
}
}