@@ -80,11 +80,12 @@ Cloud Commander supports command line parameters:
8080| ` --progress ` | show progress of file operations
8181| ` --html-dialogs ` | use html dialogs
8282| ` --open ` | open web browser when server started
83+ | ` --name ` | set tab name in web browser
8384| ` --one-panel-mode ` | set one panel mode
84- ` --config-dialog ` | enable config dialog
85- ` --console ` | enable console
86- ` --terminal ` | enable terminal
87- ` --terminal-path ` | set terminal path
85+ | ` --config-dialog ` | enable config dialog
86+ | ` --console ` | enable console
87+ | ` --terminal ` | enable terminal
88+ | ` --terminal-path ` | set terminal path
8889| ` --no-server ` | do not start server
8990| ` --no-auth ` | disable authorization
9091| ` --no-online ` | load scripts from local server
@@ -95,6 +96,8 @@ Cloud Commander supports command line parameters:
9596| ` --no-config-dialog ` | disable config dialog
9697| ` --no-console ` | disable console
9798| ` --no-terminal ` | disable terminal
99+ | ` --no-name ` | set empty tab name in web browser
100+
98101
99102If no parameters given Cloud Commander reads information from ` ~/.cloudcmd.json ` and use
100103port from it (` 8000 ` default). if port variables ` PORT ` or ` VCAP_APP_PORT ` isn't exist.
@@ -296,9 +299,10 @@ Here is description of options:
296299
297300``` js
298301{
302+ " name" : " " , /* set tab name in web browser */
299303 " auth" : false , /* enable http authentication */
300304 " username" : " root" , /* username for authentication */
301- " password" : " toor" , /* password hash for authentication*/
305+ " password" : " toor" , /* password hash for authentication */
302306 " algo" : " sha512WithRSAEncryption" , /* cryptographic algorithm */
303307 " editor" : " edward" , /* default, could be "dword" or "edward" */
304308 " packer" : " tar" , /* default, could be "tar" or "zip" */
@@ -329,6 +333,7 @@ Here is description of options:
329333
330334Some config options can be overridden with ` environment variables ` such:
331335
336+ - ` CLOUDCMD_NAME ` - set tab name in web browser
332337- ` CLOUDCMD_EDITOR ` - set editor
333338- ` CLOUDCMD_TERMINAL ` - enable terminal
334339- ` CLOUDCMD_TERMINAL_PATH ` - set terminal path
0 commit comments