Skip to content

Commit

Permalink
[CHORE] firebase 정보 로그 추가 (#51)
Browse files Browse the repository at this point in the history
* [CHORE] 투표 ID 순으로 불러오기

* [FEAT] 팝업스토어 [내 정보 + TOP 5] 리스트 조회

* [FEAT] 사용자 리스트 조회할 때 총 리스트 정보 보내주기

* [FEAT] 사용자 리스트 조회 시 페이징처리

* [FEAT] 사업계획서에 따른 팝업스토어 상세 정보 보기

* [CHORE] 나의 팝업이 top5 에 들지 못했어도 찾기

* [FEAT] 채팅방 리스트 보여주기, 생성하기 RestController 로 변경

* [FEAT] 주석 추가

* [CHORE] 이름 추가

* [CHORE] preflight 추가

* [CHORE] preflight 추가

* [FIX] cors 해결

* [FIX] 컬렉션 오류 해결

* [FIX] 사업계획서 상세 조회 생성일 추가

* [FEAT] 채팅에 jwt 추가

* [CHORE] 필요없는 파일 삭제

* [CHORE] A페이지에서 채팅 보낼시 B페이지에서 내가 보낸 채팅으로 뜨는 문제 해결

* [FEAT] 알람 기능 추가

* [FEAT] firebase 정보 추가

* [CHORE] firebase 정보 확인
  • Loading branch information
sangminee authored Mar 10, 2024
1 parent 988000e commit ca0cfa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

- name: Create application.properties
run: |
echo "${{ secrets.FIREBASE }}" > src/main/resources/firebase.json
echo "${{ secrets.APPLICATION_TEST }}" > src/main/resources/application-test.properties
echo "${{ secrets.APPLICATION_LOCAL }}" > src/main/resources/application-local.properties
echo "${{ secrets.APPLICATION_DEV }}" > src/main/resources/application-dev.properties
echo "${{ secrets.FIREBASE }}" > src/main/resources/firebase.json
- name: Build with Maven
run: mvn -e clean package -DskipTests
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/oya/kr/chat/config/FCMInitializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public void initialize() {
.build();
FirebaseApp.initializeApp(options);
initialized = true;
log.info("FCM 성공");
} catch (IOException e) {
log.info("FCM 오류");
log.error("FCM 오류 메시지: " + e.getMessage());
Expand Down

0 comments on commit ca0cfa8

Please sign in to comment.