Files
TexasPokerGame/server
2020-04-14 22:26:51 +08:00
..
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:26:51 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00
2020-04-14 22:20:02 +08:00

poke-game-center

pokeGame服务中心

快速入门

详细文档,参见 egg 文档, midway 文档

安装 启动

$ yarn
$ yarn dev
$ open http://localhost:7001/

部署

$ npm start
$ npm stop

单元测试

yarn test

目录结构

├─dist
├─logs
│  ├─ELKLog   //上报kibana日志系统log
|  |  ├─info.log
|  |  └─error.log
│  └─node-loan-center   // 系统日志
├─node_modules
├─src         //开发目录
│  ├─app
│  │  ├─controller
│  │  ├─extend
│  │  ├─helper
│  │  ├─middleware
│  │  └─public  // 静态目录
│  ├─config    // 配置文件目录,包含testprodlocal等config文件
│  ├─interface  // ts接口目录
│  ├─lib       // 工具类目录,如基类
│  └─service   
└─test  // 单元测试用例目录
    └─app
        └─controller