# five-chess-server **Repository Path**: aixtvip/five-chess-server ## Basic Information - **Project Name**: five-chess-server - **Description**: Node 自研五子棋 - 服务端 ----> 1、本项目基于我自研的象棋源码进行的魔改,部分功能或文案可能会有问题;2、本项目纯属于个人兴趣爱好;3、本项目功能迭代会慢象棋2~3个版本 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 6 - **Forks**: 0 - **Created**: 2022-04-18 - **Last Updated**: 2024-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 五子棋(服务端) - [欢迎star关注](https://gitee.com/aixtvip/five-chess-server) 1、请使用 `/database.sql` 创建库和表,数据库:`MySQL`,版本:`8.0` 2、请正确配置 `/configs/config.ts` 里面的 `APP.SOCKET_PORT`、`APP.HTTP_PORT` 3、请正确配置 `/configs/config.ts` 里面的 `DATABASE` 、 `REDIS` 4、请正确配置 `/configs/config.ts` 里面的 `EMAIL_CONFIG` ### 安装指引 1、node环境,要求v8.10或以上 ```bash $ node -v 8.1x ``` 2、安装yarn工具(推荐) ```bash $ npm i yarn -g ``` 3、yarn配置阿里源(拉镜像快) ```bash $ yarn config set registry https://registry.npm.taobao.org ``` 4、进入项目根目录执行命令拉包 ```bash $ yarn # npm i ``` 5、启动项目 ```bash $ yarn start # npm start ```