Skip to content

Commit 7c32003

Browse files
committed
[fix] firebase 환경변수 위치 변경
1 parent 9b96372 commit 7c32003

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/nambang_swag/bada_on/config/FireBaseConfig.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public class FireBaseConfig {
1515

1616
@Bean
1717
public FirebaseApp initializeFirebase() throws IOException {
18-
// FileInputStream serviceAccount = new FileInputStream("/app/firebase-service-account.json");
19-
FileInputStream serviceAccount = new FileInputStream("src/main/resources/firebase-service-account.json");
18+
FileInputStream serviceAccount = new FileInputStream("/app/firebase-service-account.json");
2019
FirebaseOptions options = FirebaseOptions.builder()
2120
.setCredentials(GoogleCredentials.fromStream(serviceAccount))
2221
.build();

0 commit comments

Comments
 (0)