You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add new meeting page creation workflow to CONTRIBUTING and README
- Add step-by-step guide for creating meeting pages using archetype template
- Document GitHub Releases file upload rules and naming conventions
- Add warning against committing large files directly to repository
- Link new section from README.md
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,56 @@ OpenChain KWG의 모든 활동은 누구나 열람하고 사용할 수 있도록
22
22
23
23
*[Resource](https://openchain-project.github.io/OpenChain-KWG/resource/) : OpenChain KWG에서 번역/생성한 자료 공개
24
24
*[Meeting](https://openchain-project.github.io/OpenChain-KWG/meeting/) : OpenChain KWG 정기 모임 공지, 발표자료, 참석자, 회의록 등 자료 공개 (작성 방법 : [Meeting 내용 작성하기](https://github.com/OpenChain-Project/OpenChain-KWG/wiki/Meeting-%EB%82%B4%EC%9A%A9-%EC%9E%91%EC%84%B1%ED%95%98%EA%B8%B0))
hugo new content/ko/meeting/29th/_index.md --kind meeting
56
+
hugo new content/en/meeting/29th/_index.md --kind meeting
57
+
```
58
+
59
+
생성된 파일을 열어 아래 항목을 채웁니다:
60
+
- Front Matter: `title`, `date`, `description`
61
+
- 발표자료 표의 링크를 1단계에서 복사한 GitHub Releases URL로 교체
62
+
63
+
**3단계: 커밋 및 배포**
64
+
65
+
```bash
66
+
git add content/ko/meeting/29th/
67
+
git add content/en/meeting/29th/
68
+
git commit -m "feat: add 29th meeting page"
69
+
git push origin master
70
+
```
71
+
72
+
> 주의: `static/` 또는 `content/` 폴더에 PDF, PPTX 등 대용량 파일을
73
+
> 직접 커밋하지 마세요. GitHub Pages 1GB 용량 한도를 초과할 수 있습니다.
74
+
25
75
*[Subgroup](https://openchain-project.github.io/OpenChain-KWG/subgroup/) : OpenChain KWG Subgroup의 활동 자료 공개 (작성 방법 : [Subgroup 내용 작성하기](https://github.com/OpenChain-Project/OpenChain-KWG/wiki/Subgroup-%EB%82%B4%EC%9A%A9-%EC%9E%91%EC%84%B1%ED%95%98%EA%B8%B0))
26
76
*[Blog](https://openchain-project.github.io/OpenChain-KWG/blog/) : OpenChain KWG 멤버가 작성하는 뉴스, 기술블로그 공개 (작성 방법 : [Blog 작성하기](https://github.com/OpenChain-Project/OpenChain-KWG/wiki/Blog-%EC%9E%91%EC%84%B1%ED%95%98%EA%B8%B0))
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Anyone in charge of Open Source Compliance at a Korean company or institute that
19
19
OpenChain KWG always welcomes your contributions. We develop and grow with each and every precious contribution. Please refer to the next page for how to contribute. : [CONTRIBUTING](CONTRIBUTING.md)
20
20
21
21
* GitHub Repository for cooperation : https://github.com/OpenChain-KWG
22
+
* New Meeting Page Guide : [CONTRIBUTING](CONTRIBUTING.md#새-미팅-페이지-생성-방법)
0 commit comments