开源实例之Nanoc
前言
Nanoc is a static-site generator, fit for building anything from a small personal blog to a large corporate website.
Nanoc 是一个用 Ruby 编写的灵活的静态站点生成器,适用于构建从个人博客到大型企业网站的任何内容。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
开发环境服务端 | Ruby |
服务器 | Nginx |
程序 | Nanoc 4.12.15 |
数据 | kaworu.ch |
实例部署
权限要求
- 具有系统读写权限
- 已安装 Ruby
- 已安装 Nginx
安装程序
官网地址:https://nanoc.app
仓库地址:https://github.com/nanoc/nanoc
#安装 Nanoc
gem install nanoc
#创建项目
nanoc create_site web
cd web
#生成静态文件 output
nanoc compile
部署博客示例
仓库地址:https://github.com/kaworu/kaworu.ch
#克隆代码
git clone https://github.com/kaworu/kaworu.ch.git blog
cd blog
#生成静态文件 output
gem install bundler
bundle install
bundle exec nanoc
实例体验
后记
本实例仅供参考,不定期重置数据。