{"id":28500794,"url":"https://github.com/devnogi/devnogi-community-server","last_synced_at":"2026-05-19T09:07:41.169Z","repository":{"id":297917065,"uuid":"997218431","full_name":"devnogi/devnogi-community-server","owner":"devnogi","description":"데브노기 커뮤니티 마이크로서비스","archived":false,"fork":false,"pushed_at":"2026-04-04T00:36:45.000Z","size":1359,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2026-04-04T02:29:56.375Z","etag":null,"topics":["community","java","jpa","mabinogi","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devnogi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-06T06:43:16.000Z","updated_at":"2026-04-04T00:36:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"cc7c10e2-b9f8-4dc6-9008-a2545d7eb439","html_url":"https://github.com/devnogi/devnogi-community-server","commit_stats":null,"previous_names":["devnogi/devnogi-community-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devnogi/devnogi-community-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnogi%2Fdevnogi-community-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnogi%2Fdevnogi-community-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnogi%2Fdevnogi-community-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnogi%2Fdevnogi-community-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devnogi","download_url":"https://codeload.github.com/devnogi/devnogi-community-server/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnogi%2Fdevnogi-community-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33209516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T07:54:09.561Z","status":"ssl_error","status_checked_at":"2026-05-19T07:54:08.508Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["community","java","jpa","mabinogi","spring-boot"],"created_at":"2025-06-08T15:07:49.095Z","updated_at":"2026-05-19T09:07:41.164Z","avatar_url":"https://github.com/devnogi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# devnogi-community-server\r\n\r\n\u003e **데브노기 커뮤니티 마이크로서비스**\r\n\r\n---\r\n\r\n## 1. 서비스 설명\r\n**목적 및 기능**\r\n- 데브노기의 커뮤니티 서비스를 위한 백엔드 마이크로서비스\r\n- 주요 기능: 게시글 CRUD, 댓글 기능, 사용자 인증/권한 관리 등 (예시; 실제 구현된 기능 기반으로 작성)\r\n\r\n**사용자가 얻는 가치**\r\n- 안정적인 커뮤니티 경험 제공\r\n- 빠른 응답성 및 확장 가능한 아키텍처 기반의 백엔드 서버 개발 및 운영\r\n\r\n---\r\n\r\n## 2. 기술 스택\r\n- **Backend**: Java, Spring Boot, Spring Data JPA\r\n- **Infra**: MySQL, Redis\r\n- **Tools**: Gradle, Docker, Docker Compose, GitHub Actions\r\n- **기타**: codecov, jacoco, spotless\r\n\r\n---\r\n\r\n## 3. 인프라 및 배포\r\n- CI/CD 구조\r\n    ![pipeline](.github/img/pipeline.png)\r\n\r\n---\r\n\r\n## 4. 프로젝트 구조\r\n```\r\nsrc/main/java/until/the/eternity/dcs\r\n│\r\n├── common/\r\n│\t├── config/          # 설정 파일\r\n│\t├── entity/          # 공통 객체\r\n│\t├── exception/       # 공통 예외 처리\r\n│\t├── notification/    # 알림 중 공통 사용 부분\r\n│\t├── request/         # 공통 요청 DTO\r\n│\t└── response/        # 공통 응답 DTO\r\n│\r\n├── domain/\r\n│\t├── announcement/    # 공지글\r\n│\t├── board/           # 게시판\r\n│\t├── comment/         # 댓글\r\n│\t├── notice/          # 알림\r\n│\t├── post/            # 게시글\r\n│\t├── report/          # 신고\r\n│\t├── tag/             # 태그\r\n│\t└── user/            # 사용자\r\n│\r\n└── DcsApplication.java\r\n```\r\n- 아키텍처\r\n  - 계층형 구조(Controller, Service, Repository)\r\n\r\n---\r\n\r\n## 5. API 문서\r\n- Swagger를 통한 문서화\r\n- Swagger 경로는 보안을 위해 내부에서만 공유\r\n\r\n## 6. DB 스키마 / ERD\r\n\r\n- ERD 다이어그램:\r\n\r\n  ![erd](.github/img/erd.png)\r\n\r\n- 마이그레이션 관리\r\n  - Flyway를 사용해 추적 관리","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnogi%2Fdevnogi-community-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevnogi%2Fdevnogi-community-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnogi%2Fdevnogi-community-server/lists"}