Skip to content

GitHub Issue Tracker Clone Project in CodeSquad

Notifications You must be signed in to change notification settings

jaypedia/issue-tracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

구성원

Crispin Tany J Mille
Back-End Back-End Front-End Front-End

프로젝트 소개

프로젝트 기간

  • 2022.06 ~ 2022.11

프로젝트 설명

  • GitHub Repository의 Issue 관리 시스템 구현

User story

image

기술 스택

BE









FE

React TypeScript React Router React Query Recoil Styled Components Webpack Babel ESLint

Repository 및 폴더구조

BE

Dev-BE

🗂 BE 폴더구조

📦 src
 ┣ 📂 docs
 ┣ 📂 main
 ┃ ┣ 📂 generated
 ┃ ┃
 ┃ ┣ 📂 java
 ┃ ┃ ┣ 📂 config
 ┃ ┃ ┣ 📂 controller
 ┃ ┃ ┃ ┗ 📂 page
 ┃ ┃ ┃
 ┃ ┃ ┣ 📂 domain
 ┃ ┃ ┃ ┣ 📂 assignee
 ┃ ┃ ┃ ┣ 📂 comment
 ┃ ┃ ┃ ┣ 📂 issue
 ┃ ┃ ┃ ┣ 📂 label
 ┃ ┃ ┃ ┣ 📂 member
 ┃ ┃ ┃ ┗ 📂 milestone
 ┃ ┃ ┃
 ┃ ┃ ┣ 📂 exception
 ┃ ┃ ┣ 📂 exceptionhandler
 ┃ ┃ ┣ 📂 login
 ┃ ┃ ┃ ┣ 📂 interceptor
 ┃ ┃ ┃ ┣ 📂 jwt
 ┃ ┃ ┃ ┗ 📂 oauth
 ┃ ┃ ┃   ┣ 📂 config
 ┃ ┃ ┃   ┣ 📂 dto
 ┃ ┃ ┃   ┗ 📂 repository
 ┃ ┃ ┃
 ┃ ┃ ┣ 📂 service
 ┃ ┃ ┃ ┗ 📂 dto
 ┃ ┃ ┃   ┣ 📂 request
 ┃ ┃ ┃   ┗ 📂 response
 ┃ ┃ ┃
 ┃ ┃ ┗ 📂 util
 ┃ ┗ 📂 resources
 ┃
 ┣ 📂 test
 ┃ ┣ 📂 java
 ┃ ┃ ┗ 📂 team20
 ┃ ┃ ┃ ┗ 📂 issuetracker
 ┃ ┃ ┃   ┣ 📂 config
 ┃ ┃ ┃   ┣ 📂 controller
 ┃ ┃ ┃   ┃
 ┃ ┃ ┃   ┣ 📂 docs
 ┃ ┃ ┃   ┃ ┣ 📂 config
 ┃ ┃ ┃   ┃ ┗ 📂 util
 ┃ ┃ ┃   ┃
 ┃ ┃ ┃   ┣ 📂 integration
 ┃ ┃ ┃   ┃ ┣ 📂 controller
 ┃ ┃ ┃   ┃ ┗ 📂 service
 ┃ ┃ ┃   ┃
 ┃ ┃ ┃   ┗ 📂 service
 ┃ ┗ 📂resources
 ┗ 📜README.md

FE

Dev-FE

FE 폴더구조

📦src
 ┣ 📂apis
 ┣ 📂assets
 ┣ 📂components
 ┃ ┣ 📂Comment
 ┃ ┣ 📂CommentForm
 ┃ ┣ 📂FilterBar
 ┃ ┣ 📂Header
 ┃ ┣ 📂HomeHeader
 ┃ ┣ 📂IssueDetailHeader
 ┃ ┣ 📂IssueDetailInfo
 ┃ ┣ 📂IssueList
 ┃ ┣ 📂LabelItem
 ┃ ┣ 📂MilestoneList
 ┃ ┣ 📂Navbar
 ┃ ┣ 📂NewIssueForm
 ┃ ┣ 📂SideBar
 ┃ ┣ 📂TabLink
 ┃ ┣ 📂ThemeSwitch
 ┃ ┗ 📂common
 ┃ ┃ ┣ 📂Button
 ┃ ┃ ┣ 📂CheckBox
 ┃ ┃ ┣ 📂CustomLink
 ┃ ┃ ┣ 📂DropDown
 ┃ ┃ ┣ 📂Input
 ┃ ┃ ┣ 📂Label
 ┃ ┃ ┣ 📂Loading
 ┃ ┃ ┣ 📂ProgressBar
 ┃ ┃ ┣ 📂TabItem
 ┃ ┃ ┣ 📂TextArea
 ┃ ┃ ┗ 📂UserProfile
 ┣ 📂constants
 ┣ 📂hooks
 ┣ 📂icons
 ┣ 📂layout
 ┣ 📂mocks
 ┣ 📂pages
 ┃ ┣ 📂Home
 ┃ ┣ 📂IssueDetail
 ┃ ┣ 📂Labels
 ┃ ┣ 📂Login
 ┃ ┣ 📂LoginCallback
 ┃ ┣ 📂Milestones
 ┃ ┣ 📂NewIssue
 ┃ ┣ 📂NewMilestone
 ┃ ┣ 📂NotFound
 ┣ 📂routes
 ┣ 📂stores
 ┣ 📂styles
 ┣ 📂types
 ┣ 📂utils
 ┣ 📜App.tsx
 ┣ 📜custom.d.ts
 ┗ 📜index.tsx

ERD

스크린샷 2022-11-21 오후 3 33 00

Rest Doc 및 API 명세

📋Rest Doc

📋WIKI API 명세


About

GitHub Issue Tracker Clone Project in CodeSquad

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 47.9%
  • TypeScript 26.7%
  • HTML 23.8%
  • JavaScript 1.5%
  • Other 0.1%