We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a6c856 commit 896ff9dCopy full SHA for 896ff9d
2 files changed
serverpod_cloud_cli/lib/command_runner/commands/categories.dart
@@ -1,4 +1,5 @@
1
abstract final class CommandCategories {
2
+ static const String gettingStarted = 'Getting started';
3
static const String manage = 'Management';
4
static const String control = 'Mission Control';
5
static const String observe = 'Observatory';
serverpod_cloud_cli/lib/command_runner/commands/launch_command.dart
@@ -40,7 +40,7 @@ class CloudLaunchCommand extends CloudCliCommand<LaunchOption> {
40
final description = 'Guided launch of a new Serverpod Cloud project.';
41
42
@override
43
- String get category => CommandCategories.control;
+ String get category => CommandCategories.gettingStarted;
44
45
46
CloudLaunchCommand({required super.logger})
0 commit comments