Skip to content

Commit

Permalink
Merge pull request #46 from Central-MakeUs/feature/sentry
Browse files Browse the repository at this point in the history
setting: sentry 연동
  • Loading branch information
leeeeeyeon authored Jan 19, 2024
2 parents 13f967d + 0cb4a07 commit f7168cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ out/
### VS Code ###
.vscode/

### application.yml ###
### Secrets Managing wit submodule ###
packy-api/src/main/resources/*.yml
packy-api/src/main/resources/*.p8
packy-api/src/main/resources/*.properties

packy-api/src/test/resources/*.sql
packy-domain/src/main/resources/*.yml
packy-domain/src/main/resources/*.sql
Expand Down
5 changes: 4 additions & 1 deletion packy-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ dependencies {

// logback
implementation 'com.github.maricn:logback-slack-appender:1.6.1'

// sentry
implementation 'io.sentry:sentry-logback:6.26.0'
}

test {
Expand All @@ -51,7 +54,7 @@ test {
processResources.dependsOn('copySecret')
tasks.register('copySecret', Copy) {
from '../packy-submodule/api'
include '*.yml', '*.p8'
include '*.yml', '*.p8', '*.properties'
into './src/main/resources'
}

Expand Down
2 changes: 1 addition & 1 deletion packy-submodule

0 comments on commit f7168cd

Please sign in to comment.