标签:分享图片 压缩 adduser 扩展 pac github 用户 snap bpa
本文转自:https://my.oschina.net/pauli/blog/198405
摘要: Windows 7 下面 NodeBB (https://nodebb.org/)环境搭建
cd D:git clone git://github.com/designcreateplay/NodeBB.git nodebb
如果没有安装 git,可以下载压缩包:https://github.com/designcreateplay/NodeBB/archive/master.zip
cd D:\nodebb
mkdir db
start mongod.exe --dbpath .\db
mongo
use nodebb
db.addUser( { user: "admin", pwd: "admin", roles: [ "userAdmin" ] } )
mongod stop
start mongod.exe --setParameter textSearchEnabled=true --rest --dbpath .\db
cd D:\nodebb
npm install
node app --setup
sh nodebb start
node app 启动好像不行,还好本地有 cygwin,就直接运行 sh nodebb start
地址:http://localhost:4567/ (管理员,用户名/密码:admin/ admin)
标签:分享图片 压缩 adduser 扩展 pac github 用户 snap bpa
原文地址:https://www.cnblogs.com/freeliver54/p/8986658.html