项目任务系统
让项目开发的任务和文档有个记录的地方,方便责任定位和系统开发进程推进
- chrome 50 +
- nodeJs 6.2+
- 从github上克隆和这个应用,修改
server/config.js
module.exports={
db:{
connectionLimit : 10,
host : 'localhost',
user : 'root',
password : 'root',
database : 'coding'
},
sessionDb:{
host: 'localhost',
port: 3306,
user: 'root',
password: 'root',
database: 'coding'
},
sessionCookie:{
maxAge: 3600000
}
}
- 在项目目录中以下命令
npm install
node build.js
- 打开chrome浏览器访问
http://localhost:8808/api/install
,安装数据库 - 打开
http://localhost:8808/
,开始使用
- 增加了项目中的文档和标签