class VMC::Cli::Runner def basic_usage "Usage: af [options] command [] [command_options]\n" + "Try 'af help [command]' or 'af help options' for more information." end def display_usage if @usage say @usage_error if @usage_error say "Usage: #{@usage}" return elsif @verb_usage say @verb_usage return end say command_usage end def command_usage <<-USAGE #{basic_usage} Currently available af commands are: Getting Started target [url] Reports current target or sets a new target login [email] [--email, --passwd] Login info System and account information Applications apps List deployed applications Application Creation push [appname] Create, push, map, and start a new application push [appname] --infra Push application to specified infrastructure push [appname] --path Push application from specified path push [appname] --url Set the url for the application push [appname] --instances Set the expected number of instances push [appname] --mem M Set the memory reservation for the application push [appname] --runtime RUNTIME Set the runtime to use for the application push [appname] --debug [MODE] Push application and start in a debug mode push [appname] --no-start Do not auto-start the application Application Operations start [--debug [MODE]] Start the application stop Stop the application restart [--debug [MODE]] Restart the application delete Delete the application clone [infra] Clone the application and services Application Updates update [--path,--debug [MODE]] Update the application bits mem [memsize] Update the memory reservation for an application map Register the application to the url unmap Unregister the application from the url instances Scale the application instances up or down Application Information crashes List recent application crashes crashlogs Display log information for crashed applications logs [--all] Display log information for the application files [path] [--all] Display directory listing or file download for [path] stats Display resource usage for the application instances List application instances Application Download pull [path] Downloads last pushed source to or [path] download [path] Downloads last pushed source to zipfile Application Environment env List application environment variables env-add Add an environment variable to an application env-del Delete an environment variable to an application Services services Lists of services available and provisioned create-service [--name,--bind] Create a provisioned service create-service --infra Create a provisioned service on a specified infrastructure create-service Create a provisioned service and assign it create-service Create a provisioned service and assign it , and bind to delete-service [servicename] Delete a provisioned service bind-service Bind a service to an application unbind-service Unbind service from the application clone-services Clone service bindings from application to export-service Export the data from a service import-service Import data into a service tunnel [--port] Create a local tunnel to a service tunnel Create a local tunnel to a service and start a local client Administration user Display user account information passwd Change the password for the current user logout Logs current user out of the target system add-user [--email, --passwd] Register a new user (requires admin privileges) delete-user Delete a user and all apps and services (requires admin privileges) System runtimes Display the supported runtimes of the target system frameworks Display the recognized frameworks of the target system infras Display the available infrastructures Micro Cloud Foundry micro status Display Micro Cloud Foundry VM status micro offline Configure Micro Cloud Foundry VM for offline mode micro online Configure Micro Cloud Foundry VM for online mode [--vmx file] Path to micro.vmx [--vmrun executable] Path to vmrun executable [--password cleartext] Cleartext password for guest VM vcap user [--save] Save cleartext password in ~/.af_micro Misc aliases List aliases alias Create an alias for a command unalias Remove an alias targets List known targets and associated authorization tokens Help help [command] Get general help or help on a specific command help options Get help on available options USAGE end end