This project contains two packages:
- a Python package located in the
python
directory, - and a TypeScript package located in the
typescript
directory.
For information on how to generate the packages out of an OpenAPI spec, please refer to the README file in the .generation
directory.
Create a branch (<BRANCH>
) with the changes you want to test and push it to the repository.
Update setup.cfg
in the root directory of the repository to point to the branch you want to test.
…
install_requires =
geoengine-openapi-client @ git+https://github.com/geo-engine/openapi-client@<BRANCH>#subdirectory=python # TODO: update before merging
…
Update package.json
in the root directory of the repository to point to the branch you want to test.
…
{
"dependencies": {
"@geoengine/openapi-client": "git://github.com/geo-engine/openapi-client.git#<BRANCH>",
…
}
}
…
This project is licensed under the Apache 2.0 License - see the LICENSE file for details