Jekyll文档系统

安装Ruby环境

# 安装rvm 
curl -sSL https://get.rvm.io | bash -s stable

# 引入环境定义。  
# 注意:这个,因系统环境不一致,请根据提示操作。
source ~/.profile

# 查看可用的ruby版本
rvm list known

# 安装 指定版本(这里安装1.9.2)
rvm install 1.9.2

# 为特定工作环境定义gemset
rvm --create 1.9.2@jekyll

# 使用阿里gem源
gem source -r https://rubygems.org/
gem source -a http://mirrors.aliyun.com/rubygems/

参考

  • RVM
  • 阿里gem源站

建立Jekyll 文档系统

安装Jekyll

rvm --create 2.2.4@jekyll
rvm use 2.2.4@jekyll
gem install jekyll

准备Github帐号

  • 注册Github帐号https://github.com/, 帐号名: eellyphp
  • 配置密钥到Github
ssh-keygen -t rsa -b 4096 -C '[email protected]'
# copy ~/.ssh/id_rsa.pub
# 配置到Github

创建Jekyll文档系统

  • 创建文档库https://github.com/new eellyphp.github.io

  • 检出文档库到本地
    git clone [email protected]:eellyphp/eellyphp.github.io.git

  • 创建jekyll文档项目

cd eelly.github.io/
jekyll new ./

ls .

[eelly@invo eellyphp]$ ll
total 36
-rw-r--r-- 1 eelly eelly  536 Jun  1 14:20 about.md     # About Page
-rw-r--r-- 1 eelly eelly  891 Jun  1 14:20 _config.yml  # Jekyll Config
drwxrwxr-x 2 eelly eelly 4096 Jun  1 14:20 css
-rw-r--r-- 1 eelly eelly 1291 Jun  1 14:20 feed.xml
drwxrwxr-x 2 eelly eelly 4096 Jun  1 14:20 _includes    # 模板文件
-rw-r--r-- 1 eelly eelly  506 Jun  1 14:20 index.html
drwxrwxr-x 2 eelly eelly 4096 Jun  1 14:20 _layouts     # 布局模板
drwxrwxr-x 2 eelly eelly 4096 Jun  1 14:20 _posts       # 默认文章目录
drwxrwxr-x 2 eelly eelly 4096 Jun  1 14:20 _sass

记一个笔记

vi _posts/2016-06-01-I-love-U.md

---
layout: post
title: I love U
date: 2016-06-01 13:14
---

I love U.

^_^

启动本地服务
jekyll build
jekyll server -H 192.168.1.10 -P 8080 -B -w --safe -q

打开浏览器访问http://192.168.1.10:8080.

你可能感兴趣的:(Jekyll文档系统)