Left: | ||
Right: |
OLD | NEW |
---|---|
1 var juju_config = { | 1 var juju_config = { |
2 // These are blacklisted config items not passed into subapps mounted into | 2 // These are blacklisted config items not passed into subapps mounted into |
3 // the main App. | 3 // the main App. |
4 serverRouting: false, | 4 serverRouting: false, |
5 html5: true, | 5 html5: true, |
6 container: '#main', | 6 container: '#main', |
7 viewContainer: '#main', | 7 viewContainer: '#main', |
8 // FIXME: turn off transitions until they are fixed. | 8 // FIXME: turn off transitions until they are fixed. |
9 transitions: false, | 9 transitions: false, |
10 | 10 |
11 // These are the main application config items used and passed down into all | 11 // These are the main application config items used and passed down into all |
12 // SubApps. | 12 // SubApps. |
13 consoleEnabled: true, | 13 consoleEnabled: true, |
14 charm_store_url: 'http://jujucharms.com/', | 14 charm_store_url: 'http://jujucharms.com/', |
15 charmworldURL: 'http://staging.jujucharms.com/', | 15 charmworldURL: 'http://staging.jujucharms.com/', |
16 // The config has three socket settings. socket_port and socket_protocol | 16 // The config has three socket settings. socket_port and socket_protocol |
17 // modify the current application url to determine the websocket url (always | 17 // modify the current application url to determine the websocket url (always |
18 // adding "/ws" as the final path). socket_url sets the entire websocket | 18 // adding "/ws" as the final path). socket_url sets the entire websocket |
19 // url. For backwards compatibility in the GUI charm, if you provide the | 19 // url. For backwards compatibility in the GUI charm, if you provide the |
20 // socket port and/or protocol *and* the socket_url, the socket_url will be | 20 // socket port and/or protocol *and* the socket_url, the socket_url will be |
21 // ignored (the port/protocol behavior overrides socket_url). | 21 // ignored (the port/protocol behavior overrides socket_url). |
22 socket_protocol: 'ws', | 22 socket_protocol: 'ws', |
23 socket_port: 8081, | 23 socket_port: 8081, |
24 user: 'admin', | 24 user: 'admin', |
25 password: 'admin', | 25 password: 'admin', |
26 apiBackend: 'python', // Value can be 'python' or 'go'. | 26 apiBackend: 'python', // Value can be 'python' or 'go'. |
27 sandbox: true, | |
jeff.pihach
2013/04/04 22:40:25
not to be committed.
bcsaller
2013/04/05 00:17:07
oops
| |
27 readOnly: false, | 28 readOnly: false, |
28 login_help: 'For this demonstration, use the password "admin" to connect.' | 29 login_help: 'For this demonstration, use the password "admin" to connect.' |
29 }; | 30 }; |
OLD | NEW |