-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
1,479 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,41 @@ | ||
# SpotlightSeoul | ||
2023-Team-Joon-SpotlightSeoul | ||
<div align =center> | ||
<br> | ||
<img width="55%" src="https://github.com/techeer-sv/SpotlightSeoul/assets/97724189/dbadb37f-f530-42d9-abd6-bd531ddad919"> | ||
|
||
|
||
</div> | ||
|
||
<br> | ||
|
||
<div align = "center"> | ||
|
||
<h3> SpotlightSeoul, 서울 문화행사 정보는 모두 여기에!</h3> | ||
</div> | ||
|
||
<br> <br> <br> | ||
|
||
## Introduction | ||
|
||
<br> <br> | ||
|
||
## System Architecture | ||
|
||
<br> <br> | ||
|
||
## Tech Stack | ||
|
||
Area| Tech Stack| | ||
:--------:|:------------------------------:| | ||
**Frontend** | <img src="https://img.shields.io/badge/react-61DAFB?style=for-the-badge&logo=react&logoColor=black"> <img src="https://img.shields.io/badge/TypeScript-3178C6.svg?style=for-the-badge&logo=TypeScript&logoColor=black"> <img src="https://img.shields.io/badge/Vite-646CFF.svg?&style=for-the-badge&logo=vite&logoColor=white"> <img src="https://img.shields.io/badge/Tailwind CSS-06B6D4?style=for-the-badge&logo=Tailwind CSS&logoColor=white"> <img alt="Recoil" src ="https://img.shields.io/badge/Recoil-0075EB.svg?&style=for-the-badge&logo=Revolut&logoColor=white"/> <img src="https://img.shields.io/badge/eslint-4B32C3?style=for-the-badge&logo=eslint&logoColor=white"> <img src="https://img.shields.io/badge/prettier-F7B93E?style=for-the-badge&logo=prettier&logoColor=white"> | ||
**Backend** | | ||
**etc** | ![Slack](https://img.shields.io/static/v1?style=for-the-badge&message=Slack&color=4A154B&logo=Slack&logoColor=FFFFFF&label=) ![Notion](https://img.shields.io/static/v1?style=for-the-badge&message=Notion&color=000000&logo=Notion&logoColor=FFFFFF&label=) ![Figma](https://img.shields.io/static/v1?style=for-the-badge&message=Figma&color=F24E1E&logo=Figma&logoColor=FFFFFF&label=) ![Postman](https://img.shields.io/static/v1?style=for-the-badge&message=Postman&color=FF6C37&logo=Postman&logoColor=FFFFFF&label=) <img src="https://img.shields.io/badge/swagger-85EA2D?style=for-the-badge&logo=swagger&logoColor=black"> ![GitKraken](https://img.shields.io/static/v1?style=for-the-badge&message=GitKraken&color=179287&logo=GitKraken&logoColor=FFFFFF&label=) | ||
|
||
|
||
<br> <br> | ||
|
||
## 🌐 Member | ||
| Name | 강민아 | 박진우 | 권광재 | 정윤호 | | ||
| Name | 강민아 | 권광재 | 박진우 | 정윤호 | | ||
| ------- | -------| ---------| ----- | -------- | | ||
| Profile | <img width="200px" src="https://avatars.githubusercontent.com/u/97724189?v=4"/> | <img width="200px" src="https://avatars.githubusercontent.com/u/100352367?v=4" /> | <img width="200px" src="https://avatars.githubusercontent.com/u/121513336?v=4"/> | <img width="200px" src="https://avatars.githubusercontent.com/u/87285536?v=4"/> | | ||
| Role | Team Leader, Frontend | Frontend | Backend | Backend | | ||
| gitHub | [mineii](https://github.com/mineii) | [nagosu](https://github.com/nagosu) | [kwongwangjae](https://github.com/kwongwangjae) | [yunhobb](https://github.com/yunhobb) | | ||
| Profile | <img width="200px" src="https://avatars.githubusercontent.com/u/97724189?v=4"/> | <img width="200px" src="https://avatars.githubusercontent.com/u/121513336?v=4"/> | <img width="200px" src="https://avatars.githubusercontent.com/u/100352367?v=4" /> | <img width="200px" src="https://avatars.githubusercontent.com/u/87285536?v=4"/> | | ||
| Role | Team Leader, Frontend | Backend | Frontend | Backend | | ||
| gitHub | [mineii](https://github.com/mineii) | [kwongwangjae](https://github.com/kwongwangjae) | [nagosu](https://github.com/nagosu) | [yunhobb](https://github.com/yunhobb) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
backend/src/main/java/com/example/backend/api/infra/PostconstructFestivalData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.example.backend.api.infra; | ||
|
||
|
||
import com.example.backend.api.service.SeoulOpenDataService; | ||
import jakarta.annotation.PostConstruct; | ||
import lombok.AccessLevel; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.experimental.FieldDefaults; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
@RequiredArgsConstructor | ||
@FieldDefaults(makeFinal = true, level = AccessLevel.PRIVATE) | ||
public class PostconstructFestivalData { | ||
|
||
SeoulOpenDataService seoulOpenDataService; | ||
|
||
@PostConstruct | ||
void runFestivalDataJob() { | ||
seoulOpenDataService.fetchFestivalData(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
.../src/main/java/com/example/backend/domain/festival/dto/response/FestivalLikeResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.example.backend.domain.festival.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class FestivalLikeResponse { | ||
private Integer festivalLike; | ||
} |
18 changes: 18 additions & 0 deletions
18
.../main/java/com/example/backend/domain/festival/dto/response/FestivalMostPageResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.example.backend.domain.festival.dto.response; | ||
|
||
import java.util.List; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Getter | ||
public class FestivalMostPageResponse { | ||
private Integer totalPageNum; | ||
List<FestivalMostResponse> postResponses; | ||
} | ||
|
22 changes: 22 additions & 0 deletions
22
.../src/main/java/com/example/backend/domain/festival/dto/response/FestivalMostResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.example.backend.domain.festival.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class FestivalMostResponse { | ||
private Long id; | ||
private String orgName; | ||
private String mainImg; | ||
private String title; | ||
private String majorCodeName; | ||
private String subCodeName; | ||
private String date; | ||
private Integer festivalView; | ||
private Integer festivalLike; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.