mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
fix no-acl-contract documentation
This commit is contained in:
parent
50c903c83e
commit
6a8c479430
@ -102,14 +102,14 @@ 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 |
|
||||
| `--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. |
|
||||
|
||||
|
@ -238,11 +238,10 @@ 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)
|
||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/events_handler.yml/}"
|
||||
printf $COLOR_Y'Starting without Events Handler...\n\n'$COLOR_RESET
|
||||
@ -263,7 +262,10 @@ while :; do
|
||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/faucet.yml/}"
|
||||
printf $COLOR_Y'Starting without Faucet...\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
|
||||
#################################################
|
||||
@ -295,13 +297,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