Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,14 @@ fi
## Query Node Infrastructure
./query-node/start.sh

## Orion
./start-orion.sh
if [ "${SKIP_ORION}" != true ]
then
## Orion
./start-orion.sh

## Storage Squid
docker-compose -f ./docker-compose.storage-squid.yml up -d
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think you mean to also prevent storage-squid from starting up if SKIP_ORION == true
The storage infra needs it to function, as they do not rely on query node anymore.

## Storage Squid
docker-compose -f ./docker-compose.storage-squid.yml up -d
fi

## Init the chain with some state
if [[ $SKIP_CHAIN_SETUP != 'true' ]]; then
Expand Down