Skip to content

Commit f31ef37

Browse files
committed
5th init
1 parent 42328ab commit f31ef37

File tree

195 files changed

+1159
-46130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+1159
-46130
lines changed

README.md

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,2 @@
1-
<p align="center">
2-
<img width="200px;" src="https://raw.githubusercontent.com/woowacourse/atdd-subway-admin-frontend/master/images/main_logo.png"/>
3-
</p>
4-
<p align="center">
5-
<img alt="npm" src="https://img.shields.io/badge/npm-6.14.15-blue">
6-
<img alt="node" src="https://img.shields.io/badge/node-14.18.2-blue">
7-
<a href="https://edu.nextstep.camp/c/R89PYi5H" alt="nextstep atdd">
8-
<img alt="Website" src="https://img.shields.io/website?url=https%3A%2F%2Fedu.nextstep.camp%2Fc%2FR89PYi5H">
9-
</a>
10-
</p>
11-
12-
<br>
13-
141
# 지하철 노선도 미션
15-
[ATDD 강의](https://edu.nextstep.camp/c/R89PYi5H) 실습을 위한 지하철 노선도 애플리케이션
16-
17-
<br>
18-
19-
## 🚀 Getting Started
20-
21-
### Install
22-
#### npm 설치
23-
```
24-
cd frontend
25-
npm install
26-
```
27-
> `frontend` 디렉토리에서 수행해야 합니다.
28-
29-
### Usage
30-
#### webpack server 구동
31-
```
32-
npm run dev
33-
```
34-
#### application 구동
35-
```
36-
./gradlew bootRun
37-
```
2+
[ATDD 강의](https://edu.nextstep.camp/c/R89PYi5H) 실습을 위한 지하철 노선도 애플리케이션

build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.5.2'
2+
id 'org.springframework.boot' version '2.6.3'
33
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
4-
id "org.asciidoctor.convert" version "1.5.9.2"
4+
id "org.asciidoctor.jvm.convert" version "3.3.2"
55
id 'java'
66
}
77

8+
configurations {
9+
asciidoctorExt
10+
}
11+
812
group = 'nextstep'
913
version = '0.0.1-SNAPSHOT'
10-
sourceCompatibility = '1.8'
14+
sourceCompatibility = '11'
1115

1216
repositories {
1317
mavenCentral()
@@ -18,9 +22,6 @@ dependencies {
1822
implementation 'org.springframework.boot:spring-boot-starter-web'
1923
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2024

21-
// handlebars
22-
implementation 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.3.0'
23-
2425
// log
2526
implementation 'net.rakugakibox.spring.boot:logback-access-spring-boot-starter:2.7.1'
2627

@@ -31,14 +32,12 @@ dependencies {
3132
implementation 'io.jsonwebtoken:jjwt:0.9.1'
3233

3334
// rest docs
34-
asciidoctor 'org.springframework.restdocs:spring-restdocs-asciidoctor:2.0.5.RELEASE'
35+
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:2.0.5.RELEASE'
3536
testImplementation 'org.springframework.restdocs:spring-restdocs-restassured:2.0.5.RELEASE'
3637

3738
// test
38-
testImplementation 'io.rest-assured:rest-assured:3.3.0'
39-
testImplementation('org.springframework.boot:spring-boot-starter-test') {
40-
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
41-
}
39+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
40+
testImplementation 'io.rest-assured:rest-assured:4.2.0'
4241

4342
runtimeOnly 'com.h2database:h2'
4443
}
@@ -61,6 +60,7 @@ task testDocument(type: Test) {
6160

6261
asciidoctor {
6362
inputs.dir snippetsDir
63+
configurations 'asciidoctorExt'
6464
dependsOn test
6565
}
6666

@@ -72,8 +72,8 @@ bootJar {
7272
}
7373

7474
task copyDocument(type: Copy) {
75-
dependsOn testDocument
75+
dependsOn asciidoctor
7676

77-
from file("build/asciidoc/html5/index.html")
77+
from file("build/docs/asciidoc")
7878
into file("src/main/resources/static/docs")
79-
}
79+
}

frontend/.babelrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

frontend/.eslintrc.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

frontend/.prettierrc.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)