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: documentation/RLC-quickstart.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,9 @@ You may refer to this [link](https://github.com/Azure/azure-sdk-for-js/blob/main
10
10
Before we start, we probably should get to know the project folder and name convention for RLC libraries.
11
11
12
12
1. Project Folder structure.
13
-
normally, the folder structure would be something like `sdk/{servicename}/{servicename}-{modulename}-rest`. For example, we have `sdk/purview/purview-account-rest` folder for purview account modules. That folder will be your **${PROJECT_ROOT} folder**.
13
+
normally, the folder structure would be something like `sdk/{servicename}/{servicename}-{modulename}-rest`. For example, we have `sdk/agrifood/agrifood-farming-rest` folder for Farmbeats account modules. That folder will be your **${PROJECT_ROOT} folder**.
14
14
1. Package Name Convention.
15
-
The package name for RLC is something like `@azure-rest/{servicename}-{modulename}`. For example, the package name for Purview Account module is `@azure-rest/purview-account`.
15
+
The package name for RLC is something like `@azure-rest/{servicename}-{modulename}`. For example, the package name for Farmbeats module is `@azure-rest/agrifood-farming`.
16
16
17
17
# How to generate RLC
18
18
@@ -24,24 +24,24 @@ We are working on to automatically generate everything right now, but currently
@@ -386,11 +386,11 @@ In order to release it, we need to add some tests for it to make sure we are del
386
386
```
387
387
1. **add test utils.**
388
388
389
-
create a `${PROJECT_ROOT}/test/public` folder and then copy the content [here](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/purview/purview-account-rest/test/public/utils) into public folder
389
+
create a `${PROJECT_ROOT}/test/public` folder and then copy the content [here](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/agrifood/agrifood-farming-rest/test/public/utils) into public folder
390
390
391
391
there are some manual changes in the copied recordedClient.ts that need to be done.
392
392
```typescript
393
-
import PurviewAccount, { PurviewAccountRestClient } from "../../../src";
393
+
import Farmbeats, { FarmbeatsRestClient } from "../../../src";
394
394
```
395
395
Needs to change to the value that was used in the swagger/readme.md in title. For example if title is "Foo"
396
396
```typescript
@@ -404,7 +404,7 @@ In order to release it, we need to add some tests for it to make sure we are del
0 commit comments