{"id":19488048,"url":"https://github.com/etff/web-novel","last_synced_at":"2026-05-18T17:01:33.073Z","repository":{"id":152479627,"uuid":"624198440","full_name":"etff/web-novel","owner":"etff","description":"웹소설 서비스","archived":false,"fork":false,"pushed_at":"2023-05-17T12:24:00.000Z","size":452,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T04:47:30.972Z","etag":null,"topics":["jpa","jwt","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/etff.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}},"created_at":"2023-04-06T00:36:00.000Z","updated_at":"2023-04-16T07:45:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"90580ccf-dc15-413d-8350-9171b9714db9","html_url":"https://github.com/etff/web-novel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/etff/web-novel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etff%2Fweb-novel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etff%2Fweb-novel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etff%2Fweb-novel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etff%2Fweb-novel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/etff","download_url":"https://codeload.github.com/etff/web-novel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etff%2Fweb-novel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33184769,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["jpa","jwt","spring-boot"],"created_at":"2024-11-10T20:49:28.738Z","updated_at":"2026-05-18T17:01:33.068Z","avatar_url":"https://github.com/etff.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 웹소설 클론\n\n## 개요\n\n- 인기 웹소설 사이트를 바탕으로 웹소설 기능을 클론하는 프로젝트입니다.\n\n## 실행방법\n\n- 별도의 설치는 필요하지 않고 `./gradlew clean`, `./gradlew bootRun` 명령어를 통해 실행할 수 있습니다.\n- 테스트 계정\n  - id: test1@test.com\n  - pw: \"test\"\n\n## ERD\n\n![erd](./assets/image/erd.png)\n\n# 기능\n\n- [x] 소설 등록/작성/삭제\n- [x] 선호작 목록\n- [x] 포인트 충전\n- [X] 소설 편당 조회 및 결제\n- [] 다양한 기준의 소설 목록 조회 기능(홈 노출/베스트/기타)\n\n---\n\n## API\n`http://localhost:8080/swagger-ui/index.html`\n## 사용자\n\n### 회원가입\n\n- URL: /api/v1/users/signup\n- Method: POST\n- Request Body\n\n```\n{\n    \"email\": \"test2@test.com\",\n    \"name\": \"test2\",\n    \"password\": \"test\"\n}\n```\n\n### 로그인\n\n- URL: /api/v1/auth/login\n- Method: POST\n- Request Body\n\n```\n{\n    \"email\": \"test2@test.com\",\n    \"password\": \"test\"\n}\n```\n\n### 사용자 선호도서 가져오기\n\n- URL: /api/v1/users//{userId}/favorites?page={page}\u0026size={size}\n- Header: Authorization: Bearer {token}\n- Method: GET\n\n---\n\n## 상품\n\n### 상품 등록\n\n- URL: /api/v1/products\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"name\": \"스페셜티켓\",\n    \"price\": 1000,\n    \"quantity\": 10,\n    \"productType\": \"TICKET\"\n}\n```\n\n### 상품 상태변경\n\n- URL: /api/v1/products/{productId}/status\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"ProductStatus\": \"SELLING',\n    \"productType\": \"TICKET\"\n}\n```\n\n---\n\n## 주문\n\n### 토큰 발급\n\n- URL: /api/v1/orders/token\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n}\n```\n\n### 상품주문\n\n- URL: /api/v1/orders\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"productId\": 1,\n    \"userId\": 1,\n    \"token\": {주문토큰}\n}\n```\n\n---\n\n## 도서\n\n### 도서 등록\n\n- URL: /api/v1/books\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"title\": \"test\",\n    \"categoryId\": 1\n    \"authorId\": 1\n}\n```\n\n### 도서 읽기\n\n- URL: /api/v1/books/{bookId}\n- Method: GET\n- Header: Authorization: Bearer {token}\n\n### 도서 목록 가져오기\n\n- URL: /api/v1/books?bookStatus={bookStatus}?page={page}\u0026size={size}\n- Method: GET\n- Header: Authorization: Bearer {token}\n\n### 도서 상태변경\n\n- URL: /api/v1/books/{bookId}/status\n- Method: PATCH\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"BookStatus\": \"SELLING\"\n}\n```\n\n## 에피소드\n\n### 에피소드 등록\n\n- URL: /api/v1/books/{bookId}/episodes\n- Method: POST\n- Header: Authorization: Bearer {token}\n- Request Body\n\n```\n{\n    \"title\": \"test\",\n    \"content\": \"test\",\n    \"ticketPrice\": 1000,\n    \"page\": 50\n}\n```\n\n### 에피소드 읽기\n\n- URL: /api/v1/books/{bookId}/episodes/{episodeId}\n- Method: GET\n- Header: Authorization: Bearer {token}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fetff%2Fweb-novel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fetff%2Fweb-novel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fetff%2Fweb-novel/lists"}