diff --git a/README.md b/README.md index c1bef4bd62..683e903d0c 100644 --- a/README.md +++ b/README.md @@ -23,18 +23,15 @@ all these demos depends on. - [Building LibVCX on OSX, Linux](./docs/build-general.md) - [Building LibVCX on mobile](./docs/build-mobile.md) -# Library initialization -Libvcx library must be initialized with one of the functions: -* `vcx_init_with_config` - initializes with passed as JSON string. -* `vcx_init` - initializes with a path to the file containing . -* `vcx_init_minimal` - initializes with the minimal (without any agency configuration). - -Each library function will use this data after the initialization. -The list of options can be find [here](../docs/configuration.md#vcx) -An example of file can be found [here](../vcx/libvcx/sample_config/config.json) - -If the library works with an agency `vcx_agent_provision` function must be called before initialization to populate configuration and wallet for this agent. -The result of this function is JSON which can be extended and used for initialization. - -To change a user must call `vcx_shutdown` and then call initialization function again. - +# Artifacts +- In Github Actions CI, we are producing number of Artifacts: + - Alpine based docker image with precompiled LibVCX + - iOS and Android builds of LibVCX + - Node wrapper + +- The artifacts are produced from every PR (unless it's coming from a forked repository due to limitations of Github Actions). + +- NodeJS wrappers are published on [npmjs](https://www.npmjs.com/package/@absaoss/node-vcx-wrapper) +- Docker images are in [Github Packages](https://github.com/AbsaOSS/libvcx/packages/332720/versions) +- Mobile artifacts are attached to [CI runs](https://github.com/AbsaOSS/libvcx/actions) (click on particular CI run to + see the artifacts) \ No newline at end of file diff --git a/wrappers/python3/README.md b/wrappers/python3/README.md index ec9ec72054..f3eacec84f 100644 --- a/wrappers/python3/README.md +++ b/wrappers/python3/README.md @@ -1,3 +1,7 @@ +# ** Heads up: Looking for Python maintainer ** +- **Python wrapper for LibVCX is not being maintained by Absa**. We don't run Python tests in CI. +- If you would like to use Python wrapper for LibVCX, we encourage you to become maintainer for Python wrapper. + # VCX for Python This is a Python wrapper for VCX library.