Windows 8

需要的软件

首先,需要安装一下程序:

你可能需要重启电脑。

运行 NodeBB

启动 Redis Server

打开 Git Shell, 输入以下命令. 克隆 NodeBB repo:

  1. git clone -b v0.7.x https://github.com/NodeBB/NodeBB.git

进入目录:

  1. cd NodeBB

安装依赖:

  1. npm install

运行交互式安装:

  1. node app.js --setup

可以默认安装过程中的所有选项。

到这里,你已经完成了安装! 现在运行

  1. node app.js

你可以通过 http://127.0.0.1:4567/ 来访问论坛了。

在 Windows 上进行开发

当你做了一些改变,并需要关闭和重启 NodeBB 时,可能稍微麻烦一些。首先安装 supervisor:

  1. npm install -g supervisor

打开 bash:

  1. bash

在 “watch” 模式下运行 NodeBB:

  1. ./nodebb watch

这样就会在开发模式下运行 NodeBB,一旦文件有所改变,会自动重启论坛。