|
| 1 | +## ACA-PY args file |
| 2 | + |
| 3 | +`docker run bcgovimages/aries-cloudagent:py36-1.16-1_0.7.1 start --help` |
| 4 | + |
| 5 | + |
| 6 | +An option that is supported by the BPA means that it should be set as false in the 'acapy-static-args.yml' file. The BPA will receive the webhook from aca-py and handle it appropriatly, saving relevant data in the database, and displaying any 'in-progress' or 'completed' items in the UI for Users to inspect and interact with. |
| 7 | + |
| 8 | +_For simplicity or demo purposes, it may be appropriate to set a supported flag to true. The BPA will still update any records appropriately, but aca-py will proceed with those protocols immediately, without interaction from the BPA, or the User._ |
| 9 | + |
| 10 | +Options that are 'NOT-SUPPORTED' must be left true, so aca-py can automatically proceed with the aries protocols and the BPA does not have the behaviour to proceded with those protocols, either automatically, or for the user to decide. |
| 11 | + |
| 12 | +Feature should be built to allow the BPA to control protocols labelled 'NOT-SUPPORTED' |
| 13 | + |
| 14 | +``` |
| 15 | +docker run bcgovimages/aries-cloudagent:py36-1.16-1_0.7.1 start --help |
| 16 | +... |
| 17 | +Debug: |
| 18 | +... |
| 19 | + --auto-accept-invites |
| 20 | + Automatically accept invites without firing a webhook |
| 21 | + event or waiting for an admin request. Default: false. |
| 22 | + [env var: ACAPY_AUTO_ACCEPT_INVITES] |
| 23 | + **SUPPORTED BY BPA** |
| 24 | +
|
| 25 | + --auto-accept-requests |
| 26 | + Automatically accept connection requests without |
| 27 | + firing a webhook event or waiting for an admin |
| 28 | + request. Default: false. [env var: |
| 29 | + ACAPY_AUTO_ACCEPT_REQUESTS] |
| 30 | + **SUPPORTED BY BPA** |
| 31 | +
|
| 32 | + --auto-respond-messages |
| 33 | + Automatically respond to basic messages indicating the |
| 34 | + message was received. Default: false. [env var: |
| 35 | + ACAPY_AUTO_RESPOND_MESSAGES] |
| 36 | + **SUPPORTED BY BPA** |
| 37 | +
|
| 38 | + --auto-respond-credential-proposal |
| 39 | + Auto-respond to credential proposals with |
| 40 | + corresponding credential offers [env var: |
| 41 | + ACAPY_AUTO_RESPOND_CREDENTIAL_PROPOSAL] |
| 42 | + **SUPPORTED BY BPA** |
| 43 | +
|
| 44 | + --auto-respond-credential-offer |
| 45 | + Automatically respond to Indy credential offers with a |
| 46 | + credential request. Default: false [env var: |
| 47 | + ACAPY_AUTO_RESPOND_CREDENTIAL_OFFER] |
| 48 | + **SUPPORTED BY BPA** |
| 49 | + |
| 50 | + --auto-respond-credential-request |
| 51 | + Auto-respond to credential requests with corresponding |
| 52 | + credentials [env var: |
| 53 | + ACAPY_AUTO_RESPOND_CREDENTIAL_REQUEST] |
| 54 | + **SUPPORTED BY BPA** |
| 55 | + |
| 56 | + --auto-respond-presentation-proposal |
| 57 | + Auto-respond to presentation proposals with |
| 58 | + corresponding presentation requests [env var: |
| 59 | + ACAPY_AUTO_RESPOND_PRESENTATION_PROPOSAL] |
| 60 | + **NOT-SUPPORTED** |
| 61 | + |
| 62 | + --auto-respond-presentation-request |
| 63 | + Automatically respond to Indy presentation requests |
| 64 | + with a constructed presentation if a corresponding |
| 65 | + credential can be retrieved for every referent in the |
| 66 | + presentation request. Default: false. [env var: |
| 67 | + ACAPY_AUTO_RESPOND_PRESENTATION_REQUEST] |
| 68 | + **SUPPORTED BY BPA** |
| 69 | + |
| 70 | + --auto-store-credential |
| 71 | + Automatically store an issued credential upon receipt. |
| 72 | + Default: false. [env var: ACAPY_AUTO_STORE_CREDENTIAL] |
| 73 | + **NOT-SUPPORTED** |
| 74 | + |
| 75 | + --auto-verify-presentation |
| 76 | + Automatically verify a presentation when it is |
| 77 | + received. Default: false. [env var: |
| 78 | + ACAPY_AUTO_VERIFY_PRESENTATION] |
| 79 | + **NOT-SUPPORTED** |
| 80 | + |
| 81 | +... |
| 82 | +Protocol: |
| 83 | + --auto-ping-connection |
| 84 | + Automatically send a trust ping immediately after a |
| 85 | + connection response is accepted. Some agents require |
| 86 | + this before marking a connection as 'active'. Default: |
| 87 | + false. [env var: ACAPY_AUTO_PING_CONNECTION] |
| 88 | + **SUPPORTED BY BPA** |
| 89 | +... |
| 90 | +``` |
| 91 | + |
| 92 | +The default 'acapy-static-args.yml` can be found [here](../scripts/acapy-static-args.yml). |
0 commit comments