mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
Merge pull request #195 from oceanprotocol/fix/acl_documentation
fix no-acl-contract documentation
This commit is contained in:
commit
09da3b3728
@ -103,15 +103,15 @@ will use the default Docker image tags for Aquarius, Keeper Contracts and Common
|
||||
| `--no-events-handler` | Start up Ocean without the `events-handler` Building Block. |
|
||||
| `--no-secret-store` | Start up Ocean without the `secret-store` Building Block. |
|
||||
| `--no-faucet` | Start up Ocean without the `faucet` Building Block. |
|
||||
| `--no-acl-contract` | Disables the configuration of secret store's ACL contract address |
|
||||
| `--no-dashboard` | Start up Ocean without the `dashboard` Building Block. |
|
||||
| `--mongodb` | Start up Ocean with MongoDB as DB engine for Aquarius instead of Elasticsearch. |
|
||||
| `--local-pacific-node` | Runs a local parity node and connects the node to the `pacific` network (official Ocean network |
|
||||
| `--local-ganache-node` | Runs a local `ganache` node. |
|
||||
| `--local-spree-node` | Runs a node of the local `spree` network. This is the default. |
|
||||
| `--local-duero-node` | Runs a local parity node and connects the node to the `duero` network. |
|
||||
| `--local-nile-node` | Runs a local parity node and connects the node to the `nile` network. |
|
||||
| `--local-pacific-node` | Runs a local parity node and connects the node to the `pacific` network (official Ocean network |
|
||||
| `--reuse-ganache-database` | Configures a running `ganache` node to use a persistent database. |
|
||||
| `--acl-contract` | Configures secret-store `acl_contract` option to enable secret-store authorization. |
|
||||
| `--force-pull` | Force pulling the latest revision of the used Docker images. |
|
||||
| `--purge` | Removes the Docker containers, volumes, artifact folder and networks used by the script. |
|
||||
|
||||
|
@ -239,8 +239,8 @@ while :; do
|
||||
#################################################
|
||||
# Exclude switches
|
||||
#################################################
|
||||
--no-commons)
|
||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/commons.yml/}"
|
||||
--no-commons)
|
||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/commons.yml/}"
|
||||
printf $COLOR_Y'Starting without Commons...\n\n'$COLOR_RESET
|
||||
;;
|
||||
--no-events-handler)
|
||||
@ -267,7 +267,10 @@ while :; do
|
||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/dashboard.yml/}"
|
||||
printf $COLOR_Y'Starting without Dashboard ...\n\n'$COLOR_RESET
|
||||
;;
|
||||
|
||||
--no-acl-contract)
|
||||
export CONFIGURE_ACL="false"
|
||||
printf $COLOR_Y'Disabling acl validation in secret-store...\n\n'$COLOR_RESET
|
||||
;;
|
||||
#################################################
|
||||
# Only Secret Store
|
||||
#################################################
|
||||
@ -299,13 +302,6 @@ while :; do
|
||||
printf $COLOR_Y'Starting and reusing the database...\n\n'$COLOR_RESET
|
||||
;;
|
||||
#################################################
|
||||
# Secret-Store validation switch
|
||||
#################################################
|
||||
--no-acl-contract)
|
||||
export CONFIGURE_ACL="false"
|
||||
printf $COLOR_Y'Disabling acl validation in secret-store...\n\n'$COLOR_RESET
|
||||
;;
|
||||
#################################################
|
||||
# Node type switches
|
||||
#################################################
|
||||
# spins up a new ganache blockchain
|
||||
|
Loading…
Reference in New Issue
Block a user