Skip to content

Commit c964096

Browse files
author
qianxun
committed
Merge branch 'feat_article' of github.com:DTStack/UED into feat_qianxun_dev
2 parents 21a88fb + 26b235f commit c964096

File tree

15 files changed

+963
-245
lines changed

15 files changed

+963
-245
lines changed

.env.json

-8
This file was deleted.

.github/workflows/CI.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [feat_*]
66

77
jobs:
8-
CI:
8+
lint:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
@@ -20,3 +20,19 @@ jobs:
2020

2121
- name: run lint
2222
run: npm run lint
23+
24+
build:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v2
28+
29+
- name: 'set Node.js'
30+
uses: actions/setup-node@v2
31+
with:
32+
node-version: 14
33+
34+
- name: install dependencies
35+
run: npm install
36+
37+
- name: run build
38+
run: npm run build

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ npm run lint
2525
## Deploy
2626

2727
``` bash
28-
npm run build
2928
npm run deploy
3029
```
30+
31+
32+
## Interface document
33+
34+
https://www.apifox.cn/apidoc/shared-c119f3d8-9f58-48bd-9584-0ed56c50d653

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@
2323
"@ant-design/icons": "^4.7.0",
2424
"antd": "^4.21.7",
2525
"axios": "^0.27.2",
26+
"koa": "^2.13.4",
27+
"koa-router": "^12.0.0",
28+
"koa2-cors": "^2.0.6",
29+
"mongoose": "^6.5.1",
2630
"next": "^12.2.2",
2731
"node-schedule": "^2.1.0",
2832
"react": "^18.2.0",
29-
"react-dom": "^18.2.0",
30-
"sharp": "^0.30.7"
33+
"react-dom": "^18.2.0"
3134
},
3235
"devDependencies": {
3336
"@types/react": "^18.0.15",

0 commit comments

Comments
 (0)