Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[add] support saving All files of a BI Data Table #19

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#### Sign in GitHub packages with NPM

1. Generate a [PAT][10] with `read:packages` authorization
2. Run Sign-in command in your terminal:
2. Run Sign-in command in your terminal, and use PAT as password:

```shell
npm login --scope=@kaiyuanshe --registry=https://npm.pkg.github.com
Expand All @@ -37,7 +37,7 @@ npm login --scope=@kaiyuanshe --registry=https://npm.pkg.github.com
```shell
npm i pnpm -g

pnpm i @kaiyuanshe/kys-service
pnpm i @kaiyuanshe/kys-service -D
```

## Environment variables
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ services:
- 443:443
networks:
- kaiyuanshe
deploy:
restart_policy:
condition: on-failure
max_attempts: 3
command: caddy reverse-proxy --from service.kaiyuanshe.cn --to kys-service:8080
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kys-service",
"version": "0.6.4",
"version": "0.6.5",
"license": "AGPL-3.0",
"author": "[email protected]",
"description": "RESTful API service of KaiYuanShe",
Expand All @@ -20,13 +20,14 @@
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"file-type": "^16.5.4",
"iterator-helpers-polyfill": "^2.3.2",
"jsonwebtoken": "^9.0.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^12.0.0",
"koa-router": "^12.0.1",
"koa2-swagger-ui": "^5.9.1",
"koagger": "^0.3.0",
"koajax": "^0.9.4",
Expand All @@ -41,18 +42,18 @@
"sqlite3": "^5.1.6",
"tslib": "^2.6.2",
"typeorm": "^0.3.17",
"web-fetch": "^1.3.2"
"web-fetch": "^1.3.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.3",
"@types/koa": "^2.13.9",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.3",
"@types/koa-router": "^7.4.5",
"@types/node": "^18.18.1",
"@types/node": "^18.18.5",
"get-git-folder": "^0.1.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "~5.2.2"
Expand Down
Loading