Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

add sentry configuration #133

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
sentry dsn
  • Loading branch information
Kamil Szczygieł committed Apr 15, 2022
commit 74b782b71825f9dc3d91027a480cd0f939dac2b6
1 change: 1 addition & 0 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ jobs:
push: true
build-args: |
NEXT_PUBLIC_TESTNET_GRAPHQL_URL=https://api-dev.whitewhale.money/graphql
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- uses: actions/checkout@v2
with:
repository: 'White-Whale-Defi-Platform/tf-infra-dev-apps'
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ jobs:
push: true
build-args: |
NEXT_PUBLIC_TESTNET_GRAPHQL_URL=https://api.whitewhale.money/graphql
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- uses: actions/checkout@v2
with:
repository: 'White-Whale-Defi-Platform/tf-infra-prod-apps'
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM node:16-alpine3.15 AS builder

ARG NEXT_PUBLIC_TESTNET_GRAPHQL_URL
ARG SENTRY_DSN

ENV NEXT_PUBLIC_TESTNET_GRAPHQL_URL ${NEXT_PUBLIC_TESTNET_GRAPHQL_URL}
ENV SENTRY_DSN ${SENTRY_DSN}

RUN apk add --no-cache libc6-compat python3 make gcc musl-dev g++