forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-default.js
More file actions
41 lines (35 loc) · 863 Bytes
/
config-default.js
File metadata and controls
41 lines (35 loc) · 863 Bytes
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
/**
* Provides a simple configuration object for Solid web client and other
* modules.
* @module config-default
*/
export default { // @@ should not use export default
/**
* Primary authentication endpoint
*/
authEndpoint: '',
/**
* Fallback authentication endpoint
*/
fallbackAuthEndpoint: 'https://databox.me/',
/**
* Default signup endpoints (list of identity providers)
*/
signupEndpoint: 'https://solidproject.org/use-solid/',
/**
* Default height of the Signup popup window, in pixels
*/
signupWindowHeight: 600,
/**
* Default width of the Signup popup window, in pixels
*/
signupWindowWidth: 1024,
/**
* Path to the client private key (only needed when running within node)
*/
key: '',
/**
* Path to the client certificate (only needed when running within node)
*/
cert: ''
}