1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

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

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"