Updated bootstrapping flow to include the account portal.

This commit is contained in:
Dean 2022-08-31 15:19:57 +01:00
parent d4d542e773
commit 82e8e23dc5
1 changed files with 6 additions and 1 deletions

View File

@ -20,6 +20,7 @@ cd -
if [ -d "../budibase-pro" ]; then
cd ../budibase-pro
echo "Bootstrapping budibase-pro"
yarn bootstrap
cd packages/pro
@ -44,7 +45,11 @@ if [ -d "../budibase-pro" ]; then
fi
if [ -d "../account-portal" ]; then
cd ../account-portal/packages/server
cd ../account-portal
echo "Bootstrapping account-portal"
yarn bootstrap
cd packages/server
echo "Linking backend-core to account-portal"
yarn link "@budibase/backend-core"