Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用Spring快速搭建博客 #1

Open
chenxuhua opened this issue Nov 22, 2015 · 0 comments
Open

使用Spring快速搭建博客 #1

chenxuhua opened this issue Nov 22, 2015 · 0 comments

Comments

@chenxuhua
Copy link
Owner

关于Spring

Spring是一个通过GitHub Issues撰写内容的博客引擎,或者说是一个简单、静态化的建站系统。不需要服务器和数据库支持,你可以把它作为一个GitHub代码仓库,并托管在免费的GitHub Pages上运行,然后在这个仓库的Issues系统里撰写日志。

你可以在这个仓库的Issues系统里添加labels标签,这些标签会成为博客的分类,然后新建Issues,并用Markdown语法写日志。

Spring拥有响应式的页面设计,可以在手机、平板和桌面端完美展现;支持IE10+和所有现代浏览器,底端设备做了跳转的降级处理。

你可以快速的安装并运行这个系统。

快速安装

首先

然后

  • 打开文件 index.html 修改如下配置参数。
$.extend(spring.config, {
  // my blog title
  title: 'Spring',
  // my blog description
  desc: "A blog engine written by github issues [Fork me on GitHub](https://github.com/zhaoda/spring)",
  // my github username
  owner: 'zhaoda',
  // creator's username
  creator: 'zhaoda',
  // the repository name on github for writting issues
  repo: 'spring',
  // custom page
  pages: [
  ]
})
  • 如果你设置了自定义域名,请打开 CNAME文件,改成已设置的域名地址。
  • 将你的代码修改提交并推送到仓库mastergh-pages中。

接下来

  • 到仓库的设置页面打开 Issues 功能。
  • 进入仓库的issues页面 https://github.com/your-username/your-repo-name/issues?state=open 。
  • 点击 New Issue 创建一个新的,并在里面写一篇日志。

最后

  • 浏览这个仓库的GitHub Pages链接 http://your-username.github.io/your-repo-name ,你可以看到你的博客,测试一下是否可用。
  • 至此,你已经搭建好了你的Spring博客。

定制开发

安装部署

  • 首先你需要在本地有一个服务器环境,比如Nginx、Apache等。
  • 然后将代码库目录配置到服务器的网站目录中。
  • 运行并浏览这个本地网站,类似 http://localhost/spring/dev.html 。
  • dev.html 是开发模式, index.html 是线上模式。

目录结构

spring/
├── css/
|    ├── boot.less  #import other less files
|    ├── github.less  #github highlight style
|    ├── home.less  #home page style
|    ├── issuelist.less #issue list widget style
|    ├── issues.less #issues page style
|    ├── labels.less #labels page style
|    ├── main.less #commo style
|    ├── markdown.less #markdown format style
|    ├── menu.less #menu panel style
|    ├── normalize.less #normalize style
|    ├── pull2refresh.less #pull2refresh widget style
|    └── side.html  #side panel style
├── dist/
|    ├── main.min.css  #css for runtime
|    └── main.min.js  #js for runtime
├── img/  #some icon, startup images
├── js/
|    ├── lib/  #some js librarys need to use
|    ├── boot.js  #boot
|    ├── home.js  #home page
|    ├── issuelist.js #issue list widget
|    ├── issues.js #issues page
|    ├── labels.js #labels page
|    ├── menu.js #menu panel
|    ├── pull2refresh.less #pull2refresh widget
|    └── side.html  #side panel
├── css/
|    ├── boot.less  #import other less files
|    ├── github.less  #github highlight style
|    ├── home.less  #home page style
|    ├── issuelist.less #issue list widget style
|    ├── issues.less #issues page style
|    ├── labels.less #labels page style
|    ├── main.less #commo style
|    ├── markdown.less #markdown format style
|    ├── menu.less #menu panel style
|    ├── normalize.less #normalize style
|    ├── pull2refresh.less #pull2refresh widget style
|    └── side.html  #side panel style
├── dev.html #used to develop
├── favicon.ico #website icon
├── Gruntfile.js #Grunt task config
├── index.html #used to runtime
└── package.json  #nodejs install config

自定义

  • 浏览 http://localhost/spring/dev.html,进入开发模式。
  • 对源代码进行修改,比如css和js目录中的文件,改成你想要的样子或功能。
  • 刷新 dev.html 查看变化。

构建

  • 首先你需要安装 Node.js 。
  • 然后安装所需要的依赖包。
$ npm install
  • 运行Grunt任务进行构建。
$ grunt
  • 浏览 http://localhost/spring/index.html,进入线上模式。
  • 如果没有问题,提交并推送你修改的代码。
  • 如果你有gh-pages分支,别忘了从master分支合并修改后的代码。
  • 重复以上的步骤,愉快的进行二次开发吧,祝你好运!

有问题可以提交Bug

谁在用

如果你也在使用Spring, 请告诉我 。

协议

Spring遵循 MIT 协议,欢迎使用。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant