frontend-tutorial-framework/src/app/config.ts

47 lines
961 B
TypeScript
Raw Normal View History

2018-03-21 15:32:56 +00:00
export const config = {
dashboard: {
route: 'dashboard',
currentLayout: 'terminal-ide-web',
2018-04-20 12:10:57 +00:00
enabledLayouts: [
'terminal-ide-web',
'terminal-ide-vertical',
'terminal-ide-horizontal',
'terminal-only',
'terminal-web',
'ide-web-vertical',
'ide-only',
'web-only'
2018-04-20 12:10:57 +00:00
],
allLayouts: [
'terminal-ide-web',
'terminal-ide-vertical',
'terminal-ide-horizontal',
'terminal-only',
'terminal-web',
'ide-web-vertical',
'ide-only',
'web-only'
2018-04-20 12:10:57 +00:00
],
iframeUrl: '/webservice',
2018-04-20 12:05:23 +00:00
hide_messages: false
2018-03-21 15:32:56 +00:00
},
ide: {
route: 'ide',
autoSaveInterval: 444,
defaultCode: 'Loading your file...',
defaultLanguage: 'text',
deployProcessName: 'webservice',
showDeployButton: true
2018-03-21 15:32:56 +00:00
},
terminal: {
route: 'shell'
2018-03-21 15:32:56 +00:00
},
messages: {
route: 'messages',
2018-04-20 14:01:43 +00:00
showNextButton: true
2018-03-21 15:32:56 +00:00
},
testmessenger: {
route: 'testmessenger'
2018-03-21 15:32:56 +00:00
}
};