Skip to content

Commit ac753f2

Browse files
committed
Feat: 기본 환경 변수 및 설정 추가
# Conflicts: # build.gradle.kts # src/main/resources/application.yml
1 parent a6a3cdc commit ac753f2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.env.default

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
JWT_SECRET=your-secret-key

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ dependencies {
3939
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4040
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
4141
implementation ("io.github.cdimascio:dotenv-java:3.0.0")
42+
43+
// JWT
44+
implementation("io.jsonwebtoken:jjwt-api:0.12.6")
45+
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6")
46+
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6")
4247
}
4348

4449
tasks.withType<Test> {

0 commit comments

Comments
 (0)