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
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,41 @@ This project contains two packages:
9
9
10
10
For information on how to generate the packages out of an OpenAPI spec, please refer to the [README](.generation/README.md) file in the [`.generation`](.generation) directory.
11
11
12
+
## Usage during Development
13
+
14
+
Create a branch (`<BRANCH>`) with the changes you want to test and push it to the repository.
15
+
16
+
### Python
17
+
18
+
Update `setup.cfg` in the root directory of the repository to point to the branch you want to test.
19
+
20
+
```ini
21
+
…
22
+
23
+
install_requires =
24
+
geoengine-openapi-client @ git+https://github.com/geo-engine/openapi-client@<BRANCH>#subdirectory=python # TODO: update before merging
25
+
26
+
…
27
+
```
28
+
29
+
### TypeScript
30
+
31
+
Update `package.json` in the root directory of the repository to point to the branch you want to test.
0 commit comments