Skip to content

Commit 7997edc

Browse files
authored
Merge pull request #50 from haksungjang/devlop
6th meeting results
2 parents 6ee7327 + 78de0c2 commit 7997edc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+951
-1130
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# OpenChain KWG
22
OpenChain Project Korea Work Group
33

4-
* This repository is for https://openchain-project.github.io/OpenChain-KWG/
5-
* Contact : <[email protected]>
4+
이곳은 OpenChain Korea Work Group을 위한 Repository입니다.
65

7-
Welcome any contribution.
6+
- [doc/](./doc)[https://openchain-project.github.io/OpenChain-KWG/](https://openchain-project.github.io/OpenChain-KWG/)을 구성하기 위한 코드가 위치합니다.
7+
- 이를 위한 자세한 사항은 [README.md](./doc/README.md)를 참고하세요.
8+
- 어떤 유형의 기여도 환영합니다. Issue를 생성하거나 Pull Request를 보내주세요.
9+
- Contact : <[email protected]>
810

9-
Create a Pull Request, please.

docs/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
# OpenChain KWG Website
3+
여기에는 OpenChain KWG Website ([https://openchain-project.github.io/OpenChain-KWG/](https://openchain-project.github.io/OpenChain-KWG/))를 위한 소스 코드가 있습니다.
4+
5+
이 웹사이트는 Jekyll([https://jekyllrb-ko.github.io/](https://jekyllrb-ko.github.io/))을 기반으로 하며, JekyllUp 테마([https://github.com/jekyllup](https://github.com/jekyllup)) 중 Massively([https://github.com/jekyllup/jekyll-theme-massively](https://github.com/jekyllup/jekyll-theme-massively))를 사용하여 제작하였습니다.
6+
7+
## 개발환경 구축하여 Local 서버에서 웹사이트 구동하기
8+
1. Local PC에서 웹사이트를 개발하기 위해서는 Ruby 개발환경, Jekyll 및 Bundler 설치가 필요합니다. 이에 대한 자세한 사항은 다음 페이지를 참고하세요. : [https://jekyllrb-ko.github.io/docs/](https://jekyllrb-ko.github.io/docs/)
9+
2. docs/의 소스 코드를 빌드하여 Local 서버로 구동하기 위해서는 먼저 임시로 _config.yml 파일 내 baseurl과 url 값을 다음과 같이 수정하세요.
10+
~~~yml
11+
#baseurl: "/OpenChain-KWG" # the subpath of your site, e.g. /blog
12+
#url: "https://OpenChain-Project.github.io" # the base hostname & protocol for your site
13+
baseurl: "" # the subpath of your site, e.g. /blog
14+
url: "" # the base hostname & protocol for your site
15+
~~~
16+
3. docs/ 디렉토리에서 필요한 gem을 설치하세요.
17+
~~~cmd
18+
$ sudo bundle install
19+
~~~
20+
4. docs/ 디렉토리에서 사이트를 빌드하고 Local 서버에 적용하면, 다음과 같이 Server가 Running합니다.
21+
~~~
22+
$ bundle exec jekyll serve
23+
24+
Configuration file: /Users/1112821/Documents/GitHub/OpenChain-KWG/docs/_config.yml
25+
Deprecation: The 'gems' configuration option has been renamed to 'plugins'. Please update your config file accordingly.
26+
Source: /Users/1112821/Documents/GitHub/OpenChain-KWG/docs
27+
Destination: /Users/1112821/Documents/GitHub/OpenChain-KWG/docs/_site
28+
Incremental build: disabled. Enable with --incremental
29+
Generating...
30+
done in 1.287 seconds.
31+
Auto-regeneration: enabled for '/Users/1112821/Documents/GitHub/OpenChain-KWG/docs'
32+
Server address: http://127.0.0.1:4000/
33+
Server running... press ctrl-c to stop.
34+
~~~
35+
5. 그러면, Local PC 브라우저에서 "[http://localhost:4000/](http://localhost:4000/)" 에 접근하여 OpenChain KWG Website로 접속할 수 있습니다.
36+
37+
## Meeting 추가하기
38+
Meeting 내용은 docs/_posts/하위의 md 파일을 생성/수정함으로 웹사이트에 반영할 수 있습니다.
39+
1. docs/_posts/2020-06-16-6th-meeting-online.md를 열어서 필요한 내용을 수정합니다.
40+
2. pdf를 추가하려면 docs/assets/pdf/2020-06-16 하위에 pdf 파일을 추가합니다.
41+
3. 이미지 파일을 추가하려 docs/images/meeting/2020-06-16 하위에 이미지 파일을 추가합니다.

docs/_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ title: OpenChain KWG
44
bio: 'Jekyll version of the Massively theme by HTML5UP'
55
description: "Jekyll version of the Massively theme by HTML5UP"
66
locale: en_US
7-
baseurl: "/OpenChain-KWG" # the subpath of your site, e.g. /blog
8-
url: "https://OpenChain-Project.github.io" # the base hostname & protocol for your site
9-
#baseurl: "" # the subpath of your site, e.g. /blog
10-
#url: "" # the base hostname & protocol for your site
7+
#baseurl: "/OpenChain-KWG" # the subpath of your site, e.g. /blog
8+
#url: "https://OpenChain-Project.github.io" # the base hostname & protocol for your site
9+
baseurl: "" # the subpath of your site, e.g. /blog
10+
url: "" # the base hostname & protocol for your site
1111
future: true
1212

1313
# Comments

docs/_posts/2020-06-16-6th-meeting-online.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "6th Meeting"
44
date: 2020-06-16
55
excerpt: "Conference Call"
6-
image: "/images/uber.png"
6+
image: "/images/meeting/2020-06-16/OpenChain_KWG_6th_2.png"
77
---
88

99
<h3>Online Meeting</h3>
@@ -41,25 +41,25 @@ image: "/images/uber.png"
4141
<td rowspan="2">2</td>
4242
<td>Kakao의 오픈소스 관리시스템 Olive 소개 (Introducing Olive, Kakao's open source management system)</td>
4343
<td>Kakao 황민호 (Robin)</td>
44-
<td>-</td>
44+
<td rowspan="2"><a href="{{ "/assets/pdf/2020-06-16/openchain-kakao_20200616.pdf" | absolute_url }}" download>download</a></td>
4545
</tr>
4646
<tr>
4747
<!--<td></td>-->
4848
<td>Olive 의존성 분석 구조 및 스펙 (Structure and Specification of Dependency Analysis in Olive)</td>
4949
<td>Kakao 김영환 (Sean)</td>
50-
<td>-</td>
50+
<!--<td>-</td>-->
5151
</tr>
5252
<tr>
5353
<td>3</td>
5454
<td>SK텔레콤, 오픈소스 이렇게 준비합니다 (SK telecom and open source)</td>
5555
<td>SK telecom 김상기 (Aaron)</td>
56-
<td>-</td>
56+
<td><a href="{{ "/assets/pdf/2020-06-16/SKT_opensource_20200616.pdf" | absolute_url }}" download>download</a></td>
5757
</tr>
5858
<tr>
5959
<td>4</td>
6060
<td>Case Study : 오픈소스 기여/공개 정책 (Open Source Contribution / Release Policy)</td>
6161
<td>All</td>
62-
<td>-</td>
62+
<td><a href="{{ "/assets/pdf/2020-06-16/OpenChainKWG_6th_20200616.pdf" | absolute_url }}" download>download</a></td>
6363
</tr>
6464
<tr>
6565
<td>5</td>
@@ -74,11 +74,18 @@ image: "/images/uber.png"
7474

7575
<h3>Attendees</h3>
7676
<ul>
77+
<li>NCSoft</li>
78+
<li>Kakao</li>
79+
<li>Hyundai Motors</li>
80+
<li>Hyundai Mobis</li>
81+
<li>LINE Plus</li>
82+
<li>LG Electronics</li>
83+
<li>SK Telecom</li>
7784
</ul>
7885

79-
8086
<h3>Minutes</h3>
8187
<ul>
88+
<li>Minutes: <a href="{{ "/assets/pdf/2020-06-16/OpenChainKWG-6th-minutes.pdf" | absolute_url }}" download>6th-minutes.pdf</a> </li>
8289
</ul>
8390

8491
<h3>Next Meetings</h3>
@@ -87,3 +94,11 @@ image: "/images/uber.png"
8794
<li>8th Meeting : 4th quarter of 2020 (Organizer : NCSoft)</li>
8895
<li>9th Meeting : 1st quarter of 2021 (Organizer : Line)</li>
8996
</ul>
97+
98+
99+
<div class="box alt">
100+
<div class="row 50% uniform">
101+
<div class="6u"><span class="image fit"><img src="{{ "/images/meeting/2020-06-16/OpenChain_6th.jpg" | absolute_url }}" alt="" /></span></div>
102+
<div class="6u"><span class="image fit"><img src="{{ "/images/meeting/2020-06-16/OpenChain_KWG_6th_1.png" | absolute_url }}" alt="" /></span></div>
103+
</div>
104+
</div>
-21.8 KB
Loading
-19.5 KB
Loading
-3.49 KB
Loading
-1007 Bytes
Loading

docs/_site/assets/icon/favicon.ico

7.5 KB
Binary file not shown.
-7.79 KB
Loading

0 commit comments

Comments
 (0)