Skip to content

Commit d6b32c4

Browse files
committed
3rd init
1 parent 80bfef1 commit d6b32c4

File tree

133 files changed

+46071
-6
lines changed

Some content is hidden

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

133 files changed

+46071
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ out/
3030

3131
### VS Code ###
3232
.vscode/
33+
frontend/node_modules

LICENSE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 next-step
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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-%3E%3D%205.5.0-blue">
6+
<img alt="node" src="https://img.shields.io/badge/node-%3E%3D%209.3.0-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+
<img alt="GitHub" src="https://img.shields.io/github/license/next-step/atdd-subway-map">
11+
</p>
12+
13+
<br>
14+
15+
# 지하철 노선도 미션
16+
[ATDD 강의](https://edu.nextstep.camp/c/R89PYi5H) 실습을 위한 지하철 노선도 애플리케이션
17+
18+
<br>
19+
20+
## 🚀 Getting Started
21+
22+
### Install
23+
#### npm 설치
24+
```
25+
cd frontend
26+
npm install
27+
```
28+
> `frontend` 디렉토리에서 수행해야 합니다.
29+
30+
### Usage
31+
#### webpack server 구동
32+
```
33+
npm run dev
34+
```
35+
#### application 구동
36+
```
37+
./gradlew bootRun
38+
```
39+
<br>
40+
41+
## ✏️ Code Reive Process
42+
[텍스트와 이미지로 살펴보는 온라인 코드 리뷰 과정](https://github.com/next-step/nextstep-docs/tree/master/codereview)
43+
44+
<br>
45+
46+
## 🐞 Bug Report
47+
48+
버그를 발견한다면, [Issues](https://github.com/next-step/atdd-subway-map/issues) 에 등록해주세요 :)
49+
50+
<br>
51+
52+
## 📝 License
53+
54+
This project is [MIT](https://github.com/next-step/atdd-subway-map/blob/master/LICENSE.md) licensed.

build.gradle

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.4.0-SNAPSHOT'
3-
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
2+
id 'org.springframework.boot' version '2.4.2'
3+
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
44
id 'java'
55
}
66

@@ -10,20 +10,24 @@ sourceCompatibility = '1.8'
1010

1111
repositories {
1212
mavenCentral()
13-
maven { url 'https://repo.spring.io/milestone' }
14-
maven { url 'https://repo.spring.io/snapshot' }
1513
}
1614

1715
dependencies {
18-
implementation 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.3.0'
16+
// spring
1917
implementation 'org.springframework.boot:spring-boot-starter-web'
2018
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
19+
20+
// handlebars
21+
implementation 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.3.0'
22+
23+
// log
2124
implementation 'net.rakugakibox.spring.boot:logback-access-spring-boot-starter:2.7.1'
25+
2226
testImplementation 'io.rest-assured:rest-assured:3.3.0'
23-
// testImplementation 'org.springframework.boot:spring-boot-starter-test'
2427
testImplementation('org.springframework.boot:spring-boot-starter-test') {
2528
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
2629
}
30+
2731
runtimeOnly 'com.h2database:h2'
2832
}
2933

frontend/.babelrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"presets": [["@babel/env", { "modules": false }]],
3+
"env": {
4+
"test": {
5+
"presets": [
6+
[
7+
"@babel/env",
8+
{
9+
"targets": {
10+
"node": "current"
11+
}
12+
}
13+
]
14+
]
15+
}
16+
}
17+
}

frontend/.eslintrc.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es6: true,
5+
jest: true
6+
},
7+
extends: ['plugin:vue/essential', 'airbnb-base', 'prettier'],
8+
globals: {
9+
Atomics: 'readonly',
10+
SharedArrayBuffer: 'readonly'
11+
},
12+
parserOptions: {
13+
ecmaVersion: 2018,
14+
sourceType: 'module'
15+
},
16+
plugins: ['vue'],
17+
rules: {
18+
semi: 0,
19+
'import/no-unresolved': 'off',
20+
'comma-dangle': 'off',
21+
'no-new': 0
22+
}
23+
}

frontend/.prettierrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
tabWidth: 2,
3+
semi: false,
4+
singleQuote: true,
5+
endOfLine: 'lf',
6+
trailingComma: 'none',
7+
bracketSpacing: true,
8+
printWidth: 150,
9+
jsxBracketSameLine: false
10+
}

0 commit comments

Comments
 (0)