Skip to content

Commit

Permalink
uncomment e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Mar 1, 2024
1 parent 7ac4887 commit 8c8739c
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,37 +107,37 @@ services:
- 8434:5432
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
# e2e_test:
# depends_on:
# - localstack
# - coordinator
# - participant_0
# - participant_1
# - coordinator_db
# - participant_0_db
# - participant_1_db
# build:
# context: .
# dockerfile: Dockerfile
# args:
# - BIN=e2e
# command: [ "--signup-sequence", "/signup_sequence.json" ]
# volumes:
# - ./bin/e2e/signup_sequence.json:/signup_sequence.json
# environment:
# - 'RUST_LOG=info'
# - 'E2E__AWS__ENDPOINT=http://localstack:4566'
# - 'E2E__AWS__REGION=us-east-1'
# - 'E2E__DB_SYNC__COORDINATOR_DB_URL=postgres://postgres:postgres@coordinator_db:5432/db'
# - 'E2E__DB_SYNC__COORDINATOR_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-db-sync-queue'
# - 'E2E__DB_SYNC__PARTICIPANT_0_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/participant-0-db-sync-queue'
# - 'E2E__DB_SYNC__PARTICIPANT_1_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/participant-1-db-sync-queue'
# - 'E2E__COORDINATOR_QUEUE__QUERY_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-uniqueness-check.fifo'
# - 'E2E__COORDINATOR_QUEUE__RESULTS_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-results-queue.fifo'
# # AWS env vars - they don't matter but are required
# - 'AWS_ACCESS_KEY_ID=test'
# - 'AWS_SECRET_ACCESS_KEY=test'
# - 'AWS_DEFAULT_REGION=us-east-1'
e2e_test:
depends_on:
- localstack
- coordinator
- participant_0
- participant_1
- coordinator_db
- participant_0_db
- participant_1_db
build:
context: .
dockerfile: Dockerfile
args:
- BIN=e2e
command: [ "--signup-sequence", "/signup_sequence.json" ]
volumes:
- ./bin/e2e/signup_sequence.json:/signup_sequence.json
environment:
- 'RUST_LOG=info'
- 'E2E__AWS__ENDPOINT=http://localstack:4566'
- 'E2E__AWS__REGION=us-east-1'
- 'E2E__DB_SYNC__COORDINATOR_DB_URL=postgres://postgres:postgres@coordinator_db:5432/db'
- 'E2E__DB_SYNC__COORDINATOR_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-db-sync-queue'
- 'E2E__DB_SYNC__PARTICIPANT_0_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/participant-0-db-sync-queue'
- 'E2E__DB_SYNC__PARTICIPANT_1_DB_SYNC_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/participant-1-db-sync-queue'
- 'E2E__COORDINATOR_QUEUE__QUERY_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-uniqueness-check.fifo'
- 'E2E__COORDINATOR_QUEUE__RESULTS_QUEUE=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/coordinator-results-queue.fifo'
# AWS env vars - they don't matter but are required
- 'AWS_ACCESS_KEY_ID=test'
- 'AWS_SECRET_ACCESS_KEY=test'
- 'AWS_DEFAULT_REGION=us-east-1'

networks:
default:
Expand Down

0 comments on commit 8c8739c

Please sign in to comment.