or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Plugin file for ACA-Py
Based on https://github.com/hyperledger/aries-cloudagent-python/issues/1121.
Config File improvements
The
plugins.yaml
structure could be the following:Logic Sequence
In this section is going to be described the entire flow from running aca-py with a external plugin like the following:
1. Arguments flow
This logic is placed in
aries_cloudagent/config/argparse.py
Argument caption
set argument into settings
2. Register and load pluggins
This logic is placed in
aries_cloudagent/config/default_context.py
Register plugins
init the plugin
The registration and the init is managed by the class
PluginRegistry
,aries_cloudagent/core/plugin_registry.py
2.1 Register plugins
Registration logic: The module is loaded on a class private variable.
2.2 Init plugins
Init the plugins: The module previously loaded launches the plugin setup.
How to pass the config (OPTIONS to choose the best)
ACA-Py flag
inside of config/argparse.py ACA-Py uses configargparse which supports yaml file parsing. we can update external_plugins flag to parse and load a config.yaml file into
settings["external_plugins"]
this would expose all loaded configurations inside the context to be used inside each module.(example)We could also update registering to have more setup from configs, possibly here
Through Environment Variables
example
Through the context
InjectionContext
Overload the setup plugin method
setup
methodPosible flow to adapt ACA-py
Following the current flow described on Logic Sequence
This is a implementation example
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Based on: Overload the setup plugin method
Having the folowing file
plugin.yaml
It is posible to deploy ACA-Py with the plugin configuration.
1. Arguments flow
Add the following in
aries_cloudagent/config/argparse.py
Argument caption
set argument into settings
2. Register and load pluggins
This logic is placed in
aries_cloudagent/config/default_context.py
init the plugin
The init is managed by the class
PluginRegistry
,aries_cloudagent/core/plugin_registry.py
2.2 Init plugins
Init the plugins: The module previously loaded launches the plugin setup.
Possible improvements
This configuration could be extended adding more plugin entry points, for instance could be possible replace the local_directory to:
or