Skip to content

Commit

Permalink
feat(backend): Add local Relay
Browse files Browse the repository at this point in the history
  • Loading branch information
cleptric committed Nov 8, 2023
1 parent d4354e8 commit 000627e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ export POTAL_URL="__POTAL_URL__"

export POTATO_CHANNEL="__POTATO_CHANNEL__"
export POTATO_SLACK_USER_ID="__POTATO_SLACK_USER_ID__"

export RELAY_SECRET_KEY="__RELAY_SECRET_KEY__"
export RELAY_PUBLIC_KEY="__RELAY_PUBLIC_KEY__"
export RELAY_ID="__RELAY_ID__"
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,20 @@ services:
aliases:
- db.gib-potato.test

relay:
image: getsentry/relay
restart: always
environment:
- RELAY_SECRET_KEY
- RELAY_PUBLIC_KEY
- RELAY_ID
ports:
- 3001:3000
networks:
gib-potato:
aliases:
- relay.gib-potato.test

volumes:
db:

Expand Down

0 comments on commit 000627e

Please sign in to comment.