You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'main' into ale-fetch-remote-manifest
Resolve conflicts by integrating main's stricter --app/--environment
validation with the remote manifest fetch feature.
Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
Copy file name to clipboardExpand all lines: cmd/project/create.go
+28-11Lines changed: 28 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -37,12 +37,12 @@ import (
37
37
)
38
38
39
39
// Flags
40
-
varcreateTemplateURLFlagstring
41
-
varcreateGitBranchFlagstring
42
40
varcreateAppNameFlagstring
41
+
varcreateEnvironmentFlagstring
42
+
varcreateGitBranchFlagstring
43
43
varcreateListFlagbool
44
44
varcreateSubdirFlagstring
45
-
varcreateEnvironmentFlagstring
45
+
varcreateTemplateURLFlagstring
46
46
47
47
// Handle to client's create function used for testing
48
48
// TODO - Find best practice, such as using an Interface and Struct to create a client
@@ -73,7 +73,7 @@ name your app 'agent' (not create an AI Agent), use the --name flag instead.`,
73
73
{Command: "create my-project -t slack-samples/deno-hello-world", Meaning: "Start a new project from a specific template"},
74
74
{Command: "create --name my-project", Meaning: "Create a project named 'my-project'"},
75
75
{Command: "create my-project -t org/monorepo --subdir apps/my-app", Meaning: "Create from a subdirectory of a template"},
76
-
{Command: "create my-project -t slack-samples/bolt-js-starter-template --app A0123456789", Meaning: "Create from template and link to an existing app"},
76
+
{Command: "create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local", Meaning: "Create from template and link to an existing app"},
0 commit comments