Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ API_INTERNAL_TEST_PORT=8082

BRAPI_READ_TIMEOUT=60m

# Max number of records to POST to the BrAPI service per request
POST_CHUNK_SIZE=1000

# BrAPI Server Variables
BRAPI_SERVER_PORT=8083

Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ services:
- AWS_SECRET_KEY=${AWS_SECRET_KEY}
- AWS_GENO_BUCKET=${AWS_GENO_BUCKET}
- AWS_S3_ENDPOINT=${AWS_S3_ENDPOINT:-https://s3.us-east-1.amazonaws.com}
restart: always
ports:
- ${API_INTERNAL_PORT}:${API_INTERNAL_PORT}
networks:
Expand All @@ -75,6 +76,7 @@ services:
environment:
- POSTGRES_DB=${DB_NAME}
- POSTGRES_PASSWORD=${DB_PASSWORD}
restart: always
ports:
- "5432:5432"
volumes:
Expand All @@ -93,6 +95,7 @@ services:
- BRAPI_DB=postgres
- BRAPI_DB_USER=postgres
- BRAPI_DB_PASSWORD=${DB_PASSWORD}
restart: always
ports:
- ${BRAPI_SERVER_PORT}:8080
volumes:
Expand Down Expand Up @@ -161,6 +164,7 @@ services:
localstack:
container_name: "localstack"
image: localstack/localstack
restart: always
ports:
- "4566:4566"
networks:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ brapi:
page-size: 1000
search:
wait-time: 1000
post-group-size: 100
post-group-size: ${POST_CHUNK_SIZE:1000}

email:
relay-server:
Expand Down