首页 > 代码库 > Octopress博客搭建

Octopress博客搭建


1、Git:版本管理工具,将代码托管到GitHub

2、Ruby + DevKit:生成静态网页

3、MarkdownPad:Windows下Markdown语法编辑器


注册GitHub帐号


https://git-scm.com/downloads

Git-2.11.1-64-bit.exe


http://rubyinstaller.org/downloads/

DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe


http://rubyinstaller.org/

rubyinstaller-2.3.3-x64.exe


http://markdownpad.com/

markdownpad2-setup.exe


http://www.awesomium.com/

awesomium_1_7_5_1_sdk_win.exe




git安装

git config --global user.name "liuzhen-GitHub"

git config --global user.email "liuzhenlife@163.com"


ssh-keygen -t rsa -C "liuzhenlife@163.com"

C:\Users\liuzhen\.ssh

id_rsa 私钥

id_rsa.pub 公钥


将公钥放到GitHub





ssh -T git@github.com  验证是否配置正确


技术分享





DevKit 安装即解压


ruby --version  查看版本


在Devkit目录用git-bash 

ruby dk.rb init


提示发现ruby正确目录才行


C:\Users\liuzhen\Desktop\DevKit\config.yml  文件中有对应的配置路径


ruby dk.rb install



http://octopress.org/docs/setup/



git clone git://github.com/imathis/octopress.git octopress




设置镜像

http://gems.ruby-china.org/


gem install bundler


gem sources -a http://gems.ruby-china.org/
gem sources -r https://rubygems.org/
gem sources -l

C:\Users\liuzhen\Desktop\octopress\Gemfile

修改此文件中镜像地址



bundle install



再octopress目录


rake generate


rake preview


localhost:4000


修改jquery地址

source/head.html  将google的jquery地址替换成百度地址



本文出自 “刘振” 博客,请务必保留此出处http://liuzhenlife.blog.51cto.com/10591893/1896524

Octopress博客搭建