Skip to content

Commit ecb5035

Browse files
committed
초기 커밋
0 parents  commit ecb5035

18 files changed

+13715
-0
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
3+
*.png binary

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# misc
7+
.DS_Store
8+
.env.local
9+
.env.development.local
10+
.env.test.local
11+
.env.production.local
12+
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# DOMJudge with React
2+
3+
## 개요
4+
5+
* React를 이용한 DOMJudge front-end 개발
6+
* DOMJudge api에서 부족한 기능들과 로그인 등의 구현을 위해 express를 통한 api 서버 구축
7+
8+
## 설치
9+
10+
```bash
11+
npm i && cd client && npm i && cd ..
12+
13+
npm start
14+
```
15+
16+
## 도움이 됐던 사이트들
17+
18+
[Create-react-app with express api](https://github.com/fullstackreact/food-lookup-demo)

client/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

client/README.md

Lines changed: 2164 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)