mirror of https://gitee.com/bigwinds/arangodb
Sorting.
This commit is contained in:
parent
a20c9ee16e
commit
f3ef5a048e
|
@ -148,30 +148,30 @@
|
|||
|
||||
/*jshint maxlen: 200 */
|
||||
var commands = {
|
||||
"setup" : "executes the setup script",
|
||||
"install" : "installs a foxx application identified by the given information to the given mountpoint",
|
||||
"tests" : "runs the tests of a foxx application mounted at the given mountpoint",
|
||||
"replace" : ["replaces an installed Foxx application",
|
||||
"WARNING: this action will remove application data if the application implements teardown!" ],
|
||||
"upgrade" : ["upgrades an installed Foxx application",
|
||||
"Note: this action will not call setup or teardown" ],
|
||||
"teardown" : [ "executes the teardown script",
|
||||
"WARNING: this action will remove application data if the application implements teardown!" ],
|
||||
"uninstall" : ["uninstalls a Foxx application and calls its teardown method",
|
||||
"WARNING: this will remove all data and code of the application!" ],
|
||||
"list" : "lists all installed Foxx applications",
|
||||
"installed" : "alias for the 'list' command",
|
||||
"available" : "lists all Foxx applications available in the local repository",
|
||||
"info" : "displays information about a Foxx application",
|
||||
"search" : "searches the local foxx-apps repository",
|
||||
"update" : "updates the local foxx-apps repository with data from the central foxx-apps repository",
|
||||
"help" : "shows this help",
|
||||
"development" : "activates development mode for the given mountpoint",
|
||||
"production" : "activates production mode for the given mountpoint",
|
||||
"configuration" : "request the configuration information for the given mountpoint",
|
||||
"configure" : "sets the configuration for the given mountpoint",
|
||||
"dependencies" : "request the dependencies information for the given mountpoint",
|
||||
"set-dependencies": "sets the dependencies for the given mountpoint"
|
||||
"development" : "activates development mode for the given mountpoint",
|
||||
"help" : "shows this help",
|
||||
"info" : "displays information about a Foxx application",
|
||||
"install" : "installs a foxx application identified by the given information to the given mountpoint",
|
||||
"installed" : "alias for the 'list' command",
|
||||
"list" : "lists all installed Foxx applications",
|
||||
"production" : "activates production mode for the given mountpoint",
|
||||
"replace" : ["replaces an installed Foxx application",
|
||||
"WARNING: this action will remove application data if the application implements teardown!" ],
|
||||
"search" : "searches the local foxx-apps repository",
|
||||
"set-dependencies": "sets the dependencies for the given mountpoint",
|
||||
"setup" : "executes the setup script",
|
||||
"teardown" : [ "executes the teardown script",
|
||||
"WARNING: this action will remove application data if the application implements teardown!" ],
|
||||
"tests" : "runs the tests of a foxx application mounted at the given mountpoint",
|
||||
"uninstall" : ["uninstalls a Foxx application and calls its teardown method",
|
||||
"WARNING: this will remove all data and code of the application!" ],
|
||||
"update" : "updates the local foxx-apps repository with data from the central foxx-apps repository",
|
||||
"upgrade" : ["upgrades an installed Foxx application",
|
||||
"Note: this action will not call setup or teardown" ]
|
||||
};
|
||||
|
||||
arangodb.print("\nThe following commands are available:\n");
|
||||
|
|
Loading…
Reference in New Issue