Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@ graph LR
sf org create scratch -d -f config/project-scratch-def.json -a recipes
```

1. Install dependencies, fetch the GraphQL schema, and build React Recipes:
1. Install dependencies and build React Recipes:

```bash
cd force-app/main/react-recipes/uiBundles/reactRecipes
npm install
npm run graphql:schema
npm run graphql:codegen
npm run build
cd ../../../../..
```
Expand All @@ -85,6 +83,15 @@ graph LR
sf org assign permset -n recipes
```

1. Fetch the GraphQL schema and run codegen:

```bash
cd force-app/main/react-recipes/uiBundles/reactRecipes
npm run graphql:schema
npm run graphql:codegen
cd ../../../../..
```

1. Import sample data:

```bash
Expand Down Expand Up @@ -121,13 +128,11 @@ graph LR
cd multiframework-recipes
```

1. Install dependencies, fetch the GraphQL schema, and build React Recipes:
1. Install dependencies and build React Recipes:

```bash
cd force-app/main/react-recipes/uiBundles/reactRecipes
npm install
npm run graphql:schema
npm run graphql:codegen
npm run build
cd ../../../../..
```
Expand All @@ -144,6 +149,15 @@ graph LR
sf org assign permset -n recipes
```

1. Fetch the GraphQL schema and run codegen:

```bash
cd force-app/main/react-recipes/uiBundles/reactRecipes
npm run graphql:schema
npm run graphql:codegen
cd ../../../../..
```

1. Import sample data:

```bash
Expand Down
Loading