-
Notifications
You must be signed in to change notification settings - Fork 0
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
9 changed files
with
559 additions
and
18 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,3 +1,6 @@ | ||
docker-compose.yml | ||
Dockerfile | ||
|
||
HELP.md | ||
.gradle | ||
build/ | ||
|
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,13 @@ | ||
<div align="center"> | ||
|
||
```plaintext | ||
__ __ ______ ______ __ __ __ | ||
/\ \ _ \ \ /\ ___\ /\ ___\ /\ \/ / /\ \ | ||
\ \ \/ ".\ \ \ \ __\ \ \___ \ \ \ _"-. \ \ \ | ||
\ \__/".~\_\ \ \_____\ \/\_____\ \ \_\ \_\ \ \_\ | ||
\/_/ \/_/ \/_____/ \/_____/ \/_/\/_/ \/_/ | ||
``` | ||
|
||
<img width="500" alt="image" src="https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjQ4d3Y4dmQyZnZscTh4cHIxZHkycTZxYmQ0c3lkcDF4NjY3MTFiaCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/6q2TpPa8QC0S7tWp2V/giphy.gif"> | ||
|
||
</div> |
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,21 @@ | ||
### 변수 설정 | ||
@resortId = 1 | ||
|
||
### 스키장 정보 조회 API | ||
GET http://localhost:8080/api/ski-resorts | ||
|
||
### 날씨 정보 조회 API | ||
GET http://localhost:8080/api/weather/{{resortId}} | ||
|
||
### 슬로프 정보 조회 API | ||
GET http://localhost:8080/api/slopes/{{resortId}} | ||
|
||
### 설질 정보 조회 API | ||
GET http://localhost:8080/api/snow-maker/{{resortId}} | ||
|
||
### 설질 투표 API(부정) | ||
POST http://localhost:8080/api/snow-maker/{{resortId}}/vote?isPositive=false | ||
|
||
### 설질 투표 API(긍정) | ||
POST http://localhost:8080/api/snow-maker/{{resortId}}/vote?isPositive=true | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package nexters.weski.common.config | ||
|
||
import org.springframework.boot.autoconfigure.domain.EntityScan | ||
import org.springframework.context.annotation.Configuration | ||
import org.springframework.data.jpa.repository.config.EnableJpaAuditing | ||
import org.springframework.data.jpa.repository.config.EnableJpaRepositories | ||
import org.springframework.transaction.annotation.EnableTransactionManagement | ||
|
||
@Configuration | ||
@EnableJpaAuditing | ||
@EnableTransactionManagement | ||
@EntityScan("nexters.weski") | ||
@EnableJpaRepositories(basePackages = ["nexters.weski"]) | ||
class JpaConfig |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
__ __ ______ ______ __ __ __ | ||
/\ \ _ \ \ /\ ___\ /\ ___\ /\ \/ / /\ \ | ||
\ \ \/ ".\ \ \ \ __\ \ \___ \ \ \ _"-. \ \ \ | ||
\ \__/".~\_\ \ \_____\ \/\_____\ \ \_\ \_\ \ \_\ | ||
\/_/ \/_/ \/_____/ \/_____/ \/_/\/_/ \/_/ | ||
Powered by Spring Boot ${spring-boot.version} |
This file was deleted.
Oops, something went wrong.