Skip to content

Commit

Permalink
setting: PropertyConfig 추가 #48
Browse files Browse the repository at this point in the history
  • Loading branch information
mingmingmon committed Oct 7, 2024
1 parent 08afb92 commit 2a791ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
run: chmod +x gradlew

# Gradle test
# - name: Test with Gradle
# run: ./gradlew test
- name: Test with Gradle
run: ./gradlew test

# Gradle build
- name: Build Gradle
Expand Down
12 changes: 12 additions & 0 deletions src/main/java/com/munecting/api/global/config/PropertyConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.munecting.api.global.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.PropertySources;

@Configuration
@PropertySources({
@PropertySource("classpath:env.properties")
})
public class PropertyConfig {
}

0 comments on commit 2a791ce

Please sign in to comment.