File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
templates/terraform/subql/base/scripts Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # Exit on any error
4- set -e
5-
63# Check if 'git' is installed
74if ! command -v git & > /dev/null; then
85 echo " 'git' is required but not installed. Please install 'git' and try again."
@@ -63,12 +60,12 @@ yarn -v
6360git clone https://github.com/autonomys/astral.git
6461cd astral/indexers
6562
66- yarn
63+ yarn install --frozen-lockfile
6764
68- export $( grep -v ' ^#' ../.env.prod | xargs) &&
65+ export $( grep -v ' ^#' ../.env | xargs) &&
6966yarn build-dictionary &&
70- lerna run codegen &&
71- lerna run build &&
67+ npx lerna run codegen &&
68+ npx lerna run build &&
7269sudo docker compose -p prod-astral-indexers \
7370 -f ../docker-compose.yml \
7471 -f ../docker-compose.prod.yml \
You can’t perform that action at this time.
0 commit comments