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
An App Builder project must be created before using the checkout starter kit.
47
-
48
-
1. Log in to the [Adobe Developer Console](https://console.adobe.io/) and select the desired organization from the dropdown menu in the top-right corner.
49
-
50
-
1. Click **Create new project from template**.
51
-
52
-
**NOTE**: If the **Create project from template** option is not displayed, your request to access App Builder might not yet be approved.
53
-
54
-
1. Select **App Builder**. The **Set up templated project** page displays.
55
-
56
-
1. Specify a project title and app name. Mark the **Include Runtime with each workspace** checkbox. Optionally, you can create a custom workspace other than the default **Stage** workspace, by clicking **Add Workspace**, and entering a name and description. Click **Save**. The Console creates a project and workspaces.
57
-
58
-
### Set up your local environment
59
-
60
44
Use the following steps to configure your local environment:
61
45
62
46
1. Create a folder for your project and navigate to it.
63
47
48
+
```bash
49
+
mkdir <your-project-name>&&cd<your-project-name>
50
+
```
51
+
64
52
1. Execute the following command to create an Adobe Developer Console project in your organization and using the Commerce checkout starter kit as a template:
65
53
66
54
```bash
@@ -69,6 +57,19 @@ Use the following steps to configure your local environment:
69
57
70
58
Replace `$GITHUB_PAT` with your GitHub personal access token. For more information, refer to [managing your personal access tokens](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens).
71
59
60
+
1. You can create an app builder project, or select the existing one, while initializing the starter kit. The created project can be found in the [Adobe Developer Console](https://console.adobe.io/).
61
+
62
+
```bash
63
+
? Select Org: <your-ims-org>
64
+
? Select a Project, or press + to create new:
65
+
?>do you wish to create a new Project? Yes
66
+
Enter Project details:
67
+
? Name: <your-project-name>
68
+
? Title: <your-project-title>
69
+
? Description: <your-project-description>
70
+
```
71
+
This creates a new project using **App Builder** as a template, including **runtime environment with each workspace**.
72
+
72
73
1. The starter kit requires you to add the following services in the console project:
0 commit comments