Skip to content

versionLog

livisky edited this page Mar 15, 2017 · 5 revisions

四.最新版本Liblogv1.2更新

  1. 注册/登录/QQ登录/github登录
  2. 个人中心/个人设置
  3. 系统主题设置
  4. 小型社区(类似cnodejs.org)/发布主题/编辑主题/添加回复/编辑回复
  5. 改nodejs模版引擎ejs改为nunjucks,通过标签配置即可实现内容的读取如:
  {% article data = "topList",limit= "6",flag="totop"%}

`添加静态资源一键打包功能(html,css,javascript) gulp配置

添加开发和生产运行模式

运行程序请选择运行模式

//压缩html,css,js 并生成相应目录
npm run compress

//运行开发模式,html,css,js均加载未压缩版本
npm run dev  

//运行生产模式,html,css,js均加载压缩版本
npm run app  

//首次运行/更新运行前请先编译项目
npm run compile

//线上推荐用pm2来运行(先配置好pm2.json)
pm2 start pm2.json

详见:http://www.jsout.com/topic/item/33.html

Clone this wiki locally