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
Copy file name to clipboardExpand all lines: README.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,44 +29,48 @@ If you need to [update the Salesforce CLI](https://developer.salesforce.com/docs
29
29
## Installing the app using a Developer Edition Org
30
30
31
31
Follow this set of instructions if you want to deploy the app to a more permanent environment than a Scratch org.
32
-
This includes non source-tracked orgs such as a free [Developer Edition Org](https://developer.salesforce.com/signup) or a [Trailhead Playground](https://trailhead.salesforce.com/).
32
+
This includes non source-tracked orgs such as a free [Developer Edition Org](https://developer.salesforce.com/signup).
33
33
34
34
> [!IMPORTANT]
35
35
> Make sure to start from a brand-new environment to avoid conflicts with previous work you may have done.
36
36
37
-
1. Clone this repository:
37
+
1. Enable Einstein in your org. Do this via **Setup**, then search for **Einstein Setup** in Quick Find. Click on that entry and turn on the **Einstein** toggle.
38
+
39
+
2. Enable Agentforce in your org. In Quick Find search for **Agentforce**, click on **Agentforce Agents**, and turn on the **Agentforce** toggle.
1. Authorize your Trailhead Playground or Developer Edition org and provide it with an alias (**agent-script-recipes**in the command below):
48
+
4. Authorize your Developer Edition org and provide it with an alias (**agent-script-recipes**in the command below):
45
49
46
50
```bash
47
51
sf org login web -s -a agent-script-recipes
48
52
```
49
53
50
-
1. Deploy the app to your org:
54
+
5. Deploy the app to your org:
51
55
52
56
```bash
53
57
sf project deploy start -d force-app
54
58
```
55
59
56
-
1. Assign the `Agent_Script_Recipes_Data` and `Agent_Script_Recipes_App` permission sets to the default user:
60
+
6. Assign the `Agent_Script_Recipes_Data` and `Agent_Script_Recipes_App` permission sets to the default user:
57
61
58
62
```bash
59
63
sf org assign permset -n Agent_Script_Recipes_Data
60
64
sf org assign permset -n Agent_Script_Recipes_App
61
65
```
62
66
63
-
1. Import some sample data:
67
+
7. Import some sample data:
64
68
65
69
```bash
66
70
sf data import tree --plan data/data-plan.json
67
71
```
68
72
69
-
1. Open your org with the **Agentforce Studio** app displayed:
73
+
8. Open your org with the **Agentforce Studio** app displayed:
70
74
71
75
```bash
72
76
sf org open -p "/lightning/n/standard-AgentforceStudio?c__nav=agents"
@@ -78,7 +82,7 @@ This includes non source-tracked orgs such as a free [Developer Edition Org](htt
78
82
## Installing the app using a Scratch Org
79
83
80
84
1. Follow these steps if you haven't configured a Dev Hub org:
81
-
1. [Select and enable a Dev Hub org](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_devhub.htm). You can use a free [Developer Edition Org](https://developer.salesforce.com/signup) or a [Trailhead Playground](https://trailhead.salesforce.com/).
85
+
1. [Select and enable a Dev Hub org](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_devhub.htm). You can use a free [Developer Edition Org](https://developer.salesforce.com/signup).
82
86
83
87
1. Authorize your Dev Hub org and provide it with an alias (**myhuborg** in the command below):
0 commit comments