Home

Awesome

RAP2-DOLORES CE version (front-end static build)

Build Status

Intro

RAP2 is a new project based on RAP1. It has two components: RAP2是在RAP1基础上重做的新项目,它包含两个组件(对应两个Github Repository)。

Resources

Deployment 部署

development 开发模式


# initialize 初始化
npm install

# config development mode server API path in /src/config/config.dev.js
# 配置开发模式后端服务器的地址。 /src/config/config.dev.js

# test cases 测试用例
npm run test

# will watch & serve automatically 会自动监视改变后重新编译
npm run dev

production

# 1. config server API path in /src/config/config.prod.js(production config file)
# 1. 配置后端服务器的地址。 /src/config/config.prod.js(生产模式配置文件)

# 2. produce react production package
# 2. 编译React生产包
npm run build

# 3. use serve or nginx to serve the static build directory
# 3. 用serve命令或nginx服务器路由到编译产出的build文件夹作为静态服务器即可

serve -s ./build -p 80

Author

Tech Arch