Skip to content

Commit

Permalink
chore: added svix to tilt
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth committed Nov 6, 2023
1 parent fe4d814 commit 12ff583
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ docker_groups = {
"apollo-router",
"mongodb",
"redis",
"svix"
],
"bitcoin": [
"lnd1",
Expand Down
20 changes: 20 additions & 0 deletions dev/docker-compose.deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,23 @@ services:
- HONEYCOMB_API_KEY=${HONEYCOMB_API_KEY}
volumes:
- ${HOST_PROJECT_PATH:-.}/config/otel-agent-config.yaml:/etc/otel-agent-config.yaml
svix:
image: svix/svix-server:v1.11
platform: linux/amd64
environment:
WAIT_FOR: "true"
SVIX_DB_DSN: "postgresql://postgres:postgres@svix-pg/postgres"
SVIX_JWT_SECRET: "8KjzRXrKkd9YFcNyqLSIY8JwiaCeRc6WK4UkMnSW"
SVIX_WHITELIST_SUBNETS: "[0.0.0.0/0]"
SVIX_QUEUE_TYPE: "memory"
depends_on:
- svix-pg
ports:
- "8071:8071"
extra_hosts:
- "bats-tests:host-gateway"

svix-pg:
image: postgres:14.1
environment:
POSTGRES_PASSWORD: postgres

0 comments on commit 12ff583

Please sign in to comment.