Skip to content

Commit b0261e9

Browse files
committed
Merge branch '2.0'
2 parents e3f6a96 + 67bc5d5 commit b0261e9

File tree

180 files changed

+4430
-7540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+4430
-7540
lines changed

.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitignore

Lines changed: 9 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,20 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
**/node_modules
5-
# roadhog-api-doc ignore
6-
/src/utils/request-temp.js
7-
_roadhog-api-doc
4+
/node_modules
5+
/npm-debug.log*
6+
/yarn-error.log
7+
/yarn.lock
8+
/package-lock.json
89

910
# production
1011
/dist
11-
/.vscode
1212

1313
# misc
1414
.DS_Store
15-
npm-debug.log*
16-
yarn-error.log
17-
18-
/coverage
19-
.idea
20-
yarn.lock
21-
package-lock.json
22-
*bak
23-
.vscode
24-
25-
# visual studio code
26-
.history
27-
*.log
28-
functions/*
29-
.temp/**
3015

3116
# umi
32-
.umi
33-
.umi-production
34-
35-
# screenshot
36-
screenshot
37-
.firebase
38-
.eslintcache
39-
40-
build
17+
/src/.umi
18+
/src/.umi-production
19+
/src/.umi-test
20+
/.env.local

.prettierignore

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,8 @@
1+
**/*.md
12
**/*.svg
3+
**/*.ejs
4+
**/*.html
25
package.json
36
.umi
47
.umi-production
5-
/dist
6-
.dockerignore
7-
.DS_Store
8-
.eslintignore
9-
*.png
10-
*.toml
11-
docker
12-
.editorconfig
13-
Dockerfile*
14-
.gitignore
15-
.prettierignore
16-
LICENSE
17-
.eslintcache
18-
*.lock
19-
yarn-error.log
20-
.history
21-
CNAME
22-
/build
8+
.umi-test

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 80,
5+
"overrides": [
6+
{
7+
"files": ".prettierrc",
8+
"options": { "parser": "json" }
9+
}
10+
]
11+
}

.prettierrc.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

.stylelintrc.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

.umirc.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { defineConfig } from 'umi';
2+
3+
export default defineConfig({
4+
nodeModulesTransform: {
5+
type: 'none',
6+
},
7+
proxy: {
8+
'/api/': {
9+
target: 'http://quark-admin.test',
10+
changeOrigin: true,
11+
pathRewrite: { '^/api': '/api' },
12+
},
13+
},
14+
publicPath: './',
15+
history: { type: 'hash' },
16+
title: false,
17+
routes: [
18+
{ path: '/', component: '@/pages/Index/index' },
19+
{ path: '/index', component: '@/pages/Index/index' },
20+
],
21+
fastRefresh: {},
22+
qiankun: {
23+
master: {
24+
apps:[]
25+
}
26+
}
27+
});

README.md

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,28 @@
11
## 介绍
2-
QuarkUI 是基于 [Ant Design Pro](https://pro.ant.design) 的前端引擎,配合 QuarkAdmin,你可以快速创建一个功能完善的管理后台
2+
QuarkUI 是一个可以通过json配置组合前端页面的低代码引擎;它提供丰富的组件,能帮助您通过很少的配置就能输出各式各样的页面
33

4-
## 环境准备
4+
## 开始
55

6-
安装依赖:
6+
安装依赖
77

88
```bash
9-
npm install
9+
$ yarn
1010
```
1111

12-
or
12+
启动服务
1313

1414
```bash
15-
yarn
15+
$ yarn start
1616
```
1717

18-
## 脚本命令
18+
## 演示站点
1919

20-
QuarkUI 提供了一些有用的脚本来帮助您快速启动和构建项目
21-
22-
23-
### 运行项目
24-
25-
```bash
26-
npm start
27-
```
28-
29-
### 构建项目
30-
31-
```bash
32-
npm run build
33-
```
20+
网址:暂无
3421

3522
## 技术支持
36-
[提交 Issues](https://github.com/quarkcms/quark-ui/issues)[在线文档](http://www.quarkcms.com/quark-ui/)[Ant Design Pro 官网](https://pro.ant.design)
23+
为了避免打扰作者日常工作,你可以在Github上提交 [Issues](https://github.com/quarkcms/quark-ui/issues)
24+
25+
相关教程,你可以查看 [在线文档](http://www.quarkcms.com/quark-ui/)
3726

3827
## License
39-
QuarkUI is licensed under The MIT License (MIT).
28+
QuarkUI is licensed under The MIT License (MIT).

config/config.ts

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)