#安装rap2-delos
git clone https://github.com/thx/rap2-delos.git
CREATE DATABASE IF NOT EXISTS RAP2_DELOS_APP DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
配置文件
目录:rap2-delos/src/config
文件:config.dev.ts;其中dev,表示开发环境,其他同理
修改:config.dev.ts文件中db对象中username,password参数与本地或者开发环境的数据库信息匹配
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
npm run build
npm run create-db
npm run check
#开发模式-启动开发模式的服务器 监视并在发生代码变更时自动重启
npm run dev
#生产模式-启动生产模式服务器
npm start
#开启防火墙
firewall-cmd --permanent --zone=public --add-port=20081/tcp
firewall-cmd --reload
#安装前端:rap2-dolores
git clone https://github.com/thx/rap2-dolores.git
配置文件
目录:rap2-dolores/src/config
文件:config.dev.ts;其中dev,表示开发环境,其他同理
修改:config.dev.ts文件,serve地址是服务端rap2-delos部署成功后的地址,默认:'http://localhost:8080'
修改成指定ip: serve: 'http://192.168.233.20:20081',
安装项目依赖包
项目根目录下执行
cnpm install
安装启动插件
npm install -g serve
编译启动项目
开发模式-自动监视改变后重新编译
npm run dev
备注:测试用例
npm run test
生产模式-编译React生产包
npm run build
用serve命令或nginx服务器路由到编译产出的build文件夹作为静态服务器即可
serve -s ./build -p 20082
看到浏览器中出现登录页面,表示部署成功
#开启防火墙
firewall-cmd --permanent --zone=public --add-port=20082/tcp
firewall-cmd --reload
#访问
http://192.168.233.20:20082/
上一篇

安装禅道Zentao
2019-02-26
下一篇

安装mysql-5.7.13
2019-02-26