Skip to content

1단계 미션 제출합니다. #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
dist/*
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"printWidth": 120,
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"endOfLine": "auto",
"useTabs": false,
"arrowParens": "always"
}
48 changes: 4 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,58 +1,18 @@
# 숫자야구게임을 만들면서 배우는 Java 애플리케이
# 숫자야구게임을 만들면서 배우는 TS 애플리케이션

- [스터디 Github](https://github.com/Meet-Coder-Study/java-baseball)
- [모집폼](https://forms.gle/2hkHQZ5eLhBrCctCA)

## 📆 기간

- 일정 : 2024. 05. 15(수) ~ 2021. 06. 01(토) - 총 2주 반

## 🖐 인원 및 진행 일정

- 총 10명
- 5월 15일 수요일 오전 10시 - 간단한 OT (미션 설명 및 코드리뷰 방식 이야기)
- 6월 1일 토요일 오전 10시 - 간단한 회고

## 📜 진행방식

- 2주 동안 숫자야구게임의 1~4단계를 Java로 진행합니다.
- 각 단계마다 코드리뷰어를 지정합니다. (랜덤 및 전에 했던 리뷰어는 제외하고 지정됨)
- Java17, Junit5, AssertJ만을 라이브러리로 사용합니다.
- 롬복 금지
- 각 미션에 대한 테스트 코드는 필수입니다.
## 📜 규칙
- TS, Jest만을 라이브러리로 사용합니다.
- 테스트 코드는 필수입니다.
- [객체지향 생활체조](https://jamie95.tistory.com/99)를 지킵니다.
- 미션과 코드리뷰를 서로 해줍니다.

## ⚙️미션

[1단계](https://www.notion.so/1-91624ac119df44429233ca487364cef8?pvs=21)

[2단계](https://www.notion.so/2-6e80526f19534e7ca6496e705826af49?pvs=21)

[3단계](https://www.notion.so/3-b85eddc7895e4f0ab93c96381b736012?pvs=21)

[4단계](https://www.notion.so/4-adf72773b6db42098065da3bb3cf348b?pvs=21)

## 📚 Github 저장소

- 해당 저장소를 fork합니다.
- 실제 base 저장소에 각 깃헙 계정으로 된 브랜치가 생성되어 있으며 해당 브랜치를 base로 하면 됩니다.

## 👨‍👩‍👧‍👦 회고

- 마지막 주차에 회고를 합니다.
- 각자 미션과 코드리뷰를 하면서 배웠던 점들 및 회고를 진행합니다.

## 💰 보증금 및 벌금

> 김세윤
3333189187900
카카오뱅크
>
- 보증금 20,000원을 첫 시작 때 운영진에게 입금합니다.
- 코드리뷰 및 미션 완료시 환급됩니다.

## 기타

- 커뮤니케이션을 위해 Slack을 사용합니다.
- 스터디에 대한 궁금하신 사항은 김세윤에게 DM 보내주시면 됩니다.
8 changes: 8 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { Config } from '@jest/types';

const config: Config.InitialOptions = {
preset: 'ts-jest',
testEnvironment: 'node',
verbose: true,
};
export default config;
Loading