-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.js
More file actions
23 lines (20 loc) · 942 Bytes
/
setup.js
File metadata and controls
23 lines (20 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dashbuilder = {
/*
// possible modes are EDITOR and CLIENT - if dashboards is set then CLIENT mode is assumed
mode: "CLIENT",
// The list of client dashboards - if CLIENT mode is used and no list is provided, than the dashboard "dashboard.yml" will be attempted to load. If no dashboard is found, then client opens for upload.
// The dashboard can also be an URL
dashboards: [ "dashboard1.yaml", "dashboard2.json"],
// base path to look for dashboards. Default is /
path: "/path",
// if true, then model from external urls will be allowed
allowExternal: true,
// A base URL for the samples repository
// if set then dashbuilder tries to retrieve samples.json from root dir and load samples from the provided URL
samplesUrl: true
*/
samplesDefaultHome: true,
samplesUrl: "_dashboards/",
allowExternal: true,
samplesUrl: "https://raw.githubusercontent.com/TapiocaAberta/dataviz/main/_dashboards/"
};