1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Support dev build with SQS.

This commit is contained in:
mike12345567 2024-05-21 18:14:04 +01:00
parent ffcd9e498d
commit aa9f836572
2 changed files with 3 additions and 1 deletions

View file

@ -29,6 +29,7 @@ services:
BB_ADMIN_USER_EMAIL: ${BB_ADMIN_USER_EMAIL}
BB_ADMIN_USER_PASSWORD: ${BB_ADMIN_USER_PASSWORD}
PLUGINS_DIR: ${PLUGINS_DIR}
SQS_SEARCH_ENABLE: 1
depends_on:
- worker-service
- redis-service
@ -56,6 +57,7 @@ services:
INTERNAL_API_KEY: ${INTERNAL_API_KEY}
REDIS_URL: redis-service:6379
REDIS_PASSWORD: ${REDIS_PASSWORD}
SQS_SEARCH_ENABLE: 1
depends_on:
- redis-service
- minio-service

View file

@ -7,6 +7,6 @@ if [ ! -d "./packages/pro/src" ]; then
fi
yarn build --scope @budibase/server --scope @budibase/worker
docker-compose -f hosting/docker-compose.build.yaml -f hosting/docker-compose.dev.yaml --env-file hosting/.env up --build --scale proxy-service=0
DOCKER_BUILDKIT=1 docker compose -f hosting/docker-compose.build.yaml -f hosting/docker-compose.dev.yaml --env-file hosting/.env up --build --scale proxy-service=0