基于 React 和 Antd.Design 技术的后台管理平台
克隆项目
git clone https://github.com/thondery/kenote-react-admin.git
安装依赖
npm i 或 yarn
添加配置
node-react config
? root: (./src/config) ->
? domain (http://localhost:4000) ->
? apiPath (/api/v1) ->
config set sccuess!
编译依赖包
npm run compile:dll
开发
npm run dev
构建
npm run build
├── /dist/ # 项目输出目录
├── /src/ # 项目源码目录
│ ├── /assets/ # 资源文件
│ ├── /components/ # UI组件
│ ├── /config/ # 配置文件
│ ├── /containers/ # 应用主入口
│ ├── /features/ # 导航页面
│ ├── /layouts/ # 页面布局
│ ├── /passport/ # 帐号相关界面,例如登录界面
│ ├── /redux/ # Redux文件
│ ├── /services/ # 数据存储相关
│ ├── /store/ # store配置
│ ├── /styles/ # 全局样式
│ ├── index.js # 入口文件
│ └── index.html # 入口文件的html
├── package.json # 项目信息
├── postcss.config.js # postcss配置
├── webpack.config.js # webpack配置
├── webpack.dll.config.js # webpack dll配置
└── .babelrc # babel配置
this repo is released under the MIT License.