Skip to content

Commit 28bec36

Browse files
author
Hyperconnect DevRel
committed
Sync @ 2022-07-19-11-05
1 parent eb447c2 commit 28bec36

13 files changed

+298
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010

1111
```
1212
$ gem install jekyll bundler
13-
$ cd techblog
1413
$ bundle install
15-
$ bundle exec jekyll serve .
14+
$ bundle exec jekyll serve . --incremental
1615
```
1716
* 만약 미래 날짜로 포스트를 작성했다면, `bundle exec jekyll serve . --future` 으로 띄우셔야 포스트를 볼 수 있습니다.
1817
* 생성된 정적 사이트의 HTML/CSS 소스파일 등은 `_site` 디렉토리 아래에서 확인할 수 있습니다.
@@ -23,6 +22,18 @@ $ bundle exec jekyll serve .
2322
$ docker run --rm -it -v "$PWD:/srv/jekyll" -p 4000:4000 jekyll/jekyll jekyll serve
2423
```
2524

25+
### openssl error during bundle install?
26+
1. brew info openssl
27+
```shell
28+
$ brew info openssl
29+
openssl@3: stable 3.0.3 (bottled) [keg-only]
30+
...
31+
For compilers to find openssl@3 you may need to set:
32+
export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib"
33+
export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include" # <-
34+
```
35+
2. gem install eventmachine -v '<event-machine-version>' -- --with-cppflags=-I/opt/homebrew/opt/openssl@3/include
36+
2637
## 어떻게 글을 작성하는가
2738

2839
* jekyll 의 설정은 매우 방대해서 필요한 것을 하나씩 찾아보며 할 수밖에 없습니다.

_posts/2022-07-19-suspicious-jvm-memory-in-container.md

Lines changed: 263 additions & 0 deletions
Large diffs are not rendered by default.
47 KB
Loading
109 KB
Loading
123 KB
Loading
178 KB
Loading
301 KB
Loading
127 KB
Loading
48.7 KB
Loading

assets/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,7 @@ pre, code {
140140
margin: 0 auto;
141141
display: block;
142142
}
143+
144+
.top-image {
145+
vertical-align: top;
146+
}

0 commit comments

Comments
 (0)