github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/command/common/internal/help_common_display_v6.go (about) 1 // +build !V7 2 3 package internal 4 5 var CommonHelpCategoryList = []HelpCategory{ 6 { 7 CategoryName: "Before getting started:", 8 CommandList: [][]string{ 9 {"config", "login", "target"}, 10 {"help", "logout", ""}, 11 }, 12 }, 13 14 { 15 CategoryName: "Application lifecycle:", 16 CommandList: [][]string{ 17 {"apps", "run-task", "events"}, 18 {"push", "logs", "set-env"}, 19 {"start", "ssh", "create-app-manifest"}, 20 {"stop", "app", "delete"}, 21 {"restart", "env", ""}, 22 {"restage", "scale", ""}, 23 }, 24 }, 25 26 { 27 CategoryName: "Services integration:", 28 CommandList: [][]string{ 29 {"marketplace", "create-user-provided-service"}, 30 {"services", "update-user-provided-service"}, 31 {"create-service", "create-service-key"}, 32 {"update-service", "delete-service-key"}, 33 {"delete-service", "service-keys"}, 34 {"service", "service-key"}, 35 {"bind-service", "bind-route-service"}, 36 {"unbind-service", "unbind-route-service"}, 37 }, 38 }, 39 40 { 41 CategoryName: "Route and domain management:", 42 CommandList: [][]string{ 43 {"routes", "delete-route", "create-domain"}, 44 {"domains", "map-route", ""}, 45 {"create-route", "unmap-route", ""}, 46 }, 47 }, 48 49 { 50 CategoryName: "Space management:", 51 CommandList: [][]string{ 52 {"spaces", "create-space", "set-space-role"}, 53 {"space-users", "delete-space", "unset-space-role"}, 54 }, 55 }, 56 57 { 58 CategoryName: "Org management:", 59 CommandList: [][]string{ 60 {"orgs", "set-org-role"}, 61 {"org-users", "unset-org-role"}, 62 }, 63 }, 64 65 { 66 CategoryName: "CLI plugin management:", 67 CommandList: [][]string{ 68 {"plugins", "add-plugin-repo", "repo-plugins"}, 69 {"install-plugin", "list-plugin-repos", ""}, 70 }, 71 }, 72 }