-
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.
Browse files
Browse the repository at this point in the history
This reverts commit 2963921.
- Loading branch information
Showing
203 changed files
with
1,445 additions
and
1,091 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
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,42 @@ | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea/modules.xml | ||
.idea/jarRepositories.xml | ||
.idea/compiler.xml | ||
.idea/libraries/ | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### Eclipse ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
### Mac OS ### | ||
.DS_Store |
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,5 +1,5 @@ | ||
FROM amazoncorretto:17-alpine | ||
|
||
COPY build/libs/parking-0.0.1-SNAPSHOT.jar app.jar | ||
COPY build/libs/app-api-0.0.1-SNAPSHOT.jar app.jar | ||
|
||
CMD ["java", "-jar", "app.jar"] |
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 @@ | ||
dependencies { | ||
implementation project(':domain') | ||
|
||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
|
||
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' | ||
implementation group: 'org.hibernate.orm', name: 'hibernate-spatial', version: '6.3.1.Final' | ||
|
||
// 메일 | ||
implementation 'org.springframework.boot:spring-boot-starter-mail' | ||
|
||
// redis | ||
implementation 'org.springframework.boot:spring-boot-starter-data-redis' | ||
|
||
// testcontainer | ||
testImplementation "org.testcontainers:testcontainers:1.19.6" | ||
testImplementation "org.testcontainers:junit-jupiter:1.19.6" | ||
testImplementation "com.redis:testcontainers-redis:2.2.0" | ||
testImplementation "org.testcontainers:mysql:1.19.6" | ||
|
||
testImplementation(testFixtures(project(":domain"))) | ||
} |
8 changes: 3 additions & 5 deletions
8
...m/example/parking/ParkingApplication.java → .../com/parkingcomestrue/ApiApplication.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 |
---|---|---|
@@ -1,23 +1,21 @@ | ||
package com.example.parking; | ||
package com.parkingcomestrue; | ||
|
||
import jakarta.annotation.PostConstruct; | ||
import java.util.TimeZone; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
import org.springframework.data.jpa.repository.config.EnableJpaAuditing; | ||
import org.springframework.scheduling.annotation.EnableScheduling; | ||
|
||
@EnableJpaAuditing | ||
@EnableScheduling | ||
@SpringBootApplication | ||
public class ParkingApplication { | ||
public class ApiApplication { | ||
|
||
@PostConstruct | ||
public void started() { | ||
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul")); | ||
} | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(ParkingApplication.class, args); | ||
SpringApplication.run(ApiApplication.class, args); | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
...auth/authcode/api/AuthCodeController.java → ...api/auth/authcode/AuthCodeController.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
10 changes: 5 additions & 5 deletions
10
...king/api/favorite/FavoriteController.java → ...king/api/favorite/FavoriteController.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
16 changes: 8 additions & 8 deletions
16
.../parking/api/member/MemberController.java → .../parking/api/member/MemberController.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
18 changes: 9 additions & 9 deletions
18
...arking/api/parking/ParkingController.java → ...arking/api/parking/ParkingController.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
8 changes: 4 additions & 4 deletions
8
.../parking/api/review/ReviewController.java → .../parking/api/review/ReviewController.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
8 changes: 4 additions & 4 deletions
8
...hcondition/SearchConditionController.java → ...hcondition/SearchConditionController.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
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.