OLD | NEW |
| 1 /* |
| 2 This file is part of the Juju GUI, which lets users view and manage Juju |
| 3 environments within a graphical interface (https://launchpad.net/juju-gui). |
| 4 Copyright (C) 2012-2013 Canonical Ltd. |
| 5 |
| 6 This program is free software: you can redistribute it and/or modify it under |
| 7 the terms of the GNU Affero General Public License version 3, as published by |
| 8 the Free Software Foundation. |
| 9 |
| 10 This program is distributed in the hope that it will be useful, but WITHOUT |
| 11 ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, |
| 12 SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero |
| 13 General Public License for more details. |
| 14 |
| 15 You should have received a copy of the GNU Affero General Public License along |
| 16 with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 */ |
| 18 |
1 var juju_config = { | 19 var juju_config = { |
2 // These are blacklisted config items not passed into subapps mounted into | 20 // These are blacklisted config items not passed into subapps mounted into |
3 // the main App. | 21 // the main App. |
4 serverRouting: false, | 22 serverRouting: false, |
5 html5: true, | 23 html5: true, |
6 container: '#main', | 24 container: '#main', |
7 viewContainer: '#main', | 25 viewContainer: '#main', |
8 // FIXME: turn off transitions until they are fixed. | 26 // FIXME: turn off transitions until they are fixed. |
9 transitions: false, | 27 transitions: false, |
10 | 28 |
(...skipping 12 matching lines...) Expand all Loading... |
23 socket_port: 8081, | 41 socket_port: 8081, |
24 user: undefined, | 42 user: undefined, |
25 password: undefined, | 43 password: undefined, |
26 apiBackend: 'python', // Value can be 'python' or 'go'. | 44 apiBackend: 'python', // Value can be 'python' or 'go'. |
27 sandbox: false, | 45 sandbox: false, |
28 readOnly: false, | 46 readOnly: false, |
29 login_help: ( | 47 login_help: ( |
30 'The password is the admin-secret from the Juju environment. This can ' + | 48 'The password is the admin-secret from the Juju environment. This can ' + |
31 'often be found by looking in ~/.juju/environments.yaml.') | 49 'often be found by looking in ~/.juju/environments.yaml.') |
32 }; | 50 }; |
OLD | NEW |