Skip to content

Commit

Permalink
(NOBIDS) fix relative pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelsc committed Nov 24, 2023
1 parent e94cb0e commit 6a5aab1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions local-deployment/provision-explorer-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ touch config.yml
cat >config.yml <<EOL
chain:
clConfigPath: 'node'
elConfigPath: 'elconfig.json'
elConfigPath: 'local-deployment/elconfig.json'
readerDatabase:
name: db
host: 127.0.0.1
Expand Down Expand Up @@ -108,11 +108,11 @@ echo "initializing bigtable schema"
PROJECT="explorer"
INSTANCE="explorer"
HOST="127.0.0.1:$LBT_PORT"

go run ../cmd/misc/main.go -config config.yml -command initBigtableSchema
cd ..
go run ./cmd/misc/main.go -config local-deployment/config.yml -command initBigtableSchema

echo "bigtable schema initialization completed"

echo "provisioning postgres db schema"
go run ../cmd/misc/main.go -config config.yml -command applyDbSchema
go run ./cmd/misc/main.go -config local-deployment/config.yml -command applyDbSchema
echo "postgres db schema initialization completed"

0 comments on commit 6a5aab1

Please sign in to comment.