Skip to content

Commit 96b538a

Browse files
committed
Fix sentry + check
1 parent 2ebda31 commit 96b538a

File tree

6 files changed

+50
-49
lines changed

6 files changed

+50
-49
lines changed

.github/workflows/branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,5 +155,5 @@ jobs:
155155
docker compose --file docker-compose-branch.yml pull && \
156156
docker login -u ${{ secrets.DOCKER_LOGIN }} -p ${{ secrets.DOCKER_PASSWD }} ${{ secrets.DOCKER_REGISTRY }} && \
157157
docker compose --project-name ${{ github.ref_name }}-api_php --file docker-compose-branch.yml up -d && \
158-
until docker compose --file docker-compose-branch.yml exec symfony true 2>/dev/null; do sleep 5; done && \
158+
until docker exec ${{ github.ref_name }}-api_php-sf true 2>/dev/null; do sleep 5; done && \
159159
docker compose --file docker-compose-branch.yml exec symfony php bin/console doctrine:migrations:migrate --no-interaction"

LOCAL.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Build en local
22

33
```bash
4+
source .env.local
45
docker compose -f docker-compose.local.yml up -d --force-recreate --build
56

67
Goto: http://localhost:9080/

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lukascivil/treewalker": "dev-master",
2020
"nelmio/api-doc-bundle": "^5.6",
2121
"nelmio/cors-bundle": "^2.5",
22-
"sentry/sentry-symfony": "^5.3",
22+
"sentry/sentry-symfony": "^5.5",
2323
"symfony/asset": "7.3.*",
2424
"symfony/cache-contracts": "^3.6",
2525
"symfony/console": "7.3.*",

composer.lock

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/packages/prod/sentry.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
sentry:
2-
dsn: '%env(SENTRY_DSN)%'
3-
options:
4-
integrations:
5-
- 'Sentry\Integration\IgnoreErrorsIntegration'
1+
#sentry:
2+
# dsn: '%env(SENTRY_DSN)%'
3+
# options:
4+
# integrations:
5+
# - 'Sentry\Integration\IgnoreErrorsIntegration'
66

7-
services:
8-
Sentry\Integration\IgnoreErrorsIntegration:
9-
arguments:
10-
$options:
11-
ignore_exceptions:
12-
- Symfony\Component\HttpKernel\Exception\NotFoundHttpException
7+
#services:
8+
# Sentry\Integration\IgnoreErrorsIntegration:
9+
# arguments:
10+
# $options:
11+
# ignore_exceptions:
12+
# - Symfony\Component\HttpKernel\Exception\NotFoundHttpException

public/bundles/nelmioapidoc/swagger-ui/swagger-ui-bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)