Skip to content

Commit

Permalink
feat(web): impl db crud; impl file crud; (#542)
Browse files Browse the repository at this point in the history
* feat: function deploy

* feat: add file upload

* update: edit bucket modal

* refactor: react query best practice

* fix: add nextjs env viriable & fix next build errors

* fix:  build error, change pnpm to npm

* refactor: remove next, change to vite

* refactor: add i18n support

* fix: update services code

* impl runtime log (#535)

* fix(server): fix oss external endpoint in env

Signed-off-by: maslow <wangfugen@126.com>

* feat(runtime): implement func logging in node runtime

Signed-off-by: maslow <wangfugen@126.com>

Signed-off-by: maslow <wangfugen@126.com>

* chore: update readme & changelog (#536)

Signed-off-by: maslow <wangfugen@126.com>

* fix(core): fix gateway bucket name issue & minio deploy domain config (#537)

Signed-off-by: maslow <wangfugen@126.com>

* fix: add code update, storage mana

* feat: add database mana

* fix(runtime): impv runtime logging struct; add func logs api (#538)

Signed-off-by: maslow <wangfugen@126.com>

* refactor(server): add log module (#539)

Signed-off-by: maslow <wangfugen@126.com>
Co-authored-by: maslow <wangfugen@126.com>
  • Loading branch information
LeezQ and maslow authored Dec 14, 2022
1 parent 37c049c commit 9782423
Show file tree
Hide file tree
Showing 63 changed files with 7,598 additions and 1,004 deletions.
2 changes: 1 addition & 1 deletion web/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
["^react", "^@?\\w"],
["^(@chakra-ui)/(/.*|$/)"],
// Internal packages.
["^(@/components|@/constants|@/utils)(/.*|$)"],
["^(@/components|@/constants|@/utils|/@/services)(/.*|$)"],
// Side effect imports.
["^\\u0000"],
// Parent imports. Put `..` last.
Expand Down
18 changes: 0 additions & 18 deletions web/.linguirc

This file was deleted.

4 changes: 2 additions & 2 deletions web/.swagger.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = [
{
swaggerPath: "http://localhost:3000/api-json",
swaggerPath: "http://api.192.168.64.11.nip.io/api-json",
typingFileName: "api-auto.d.ts",

outDir: "apis/v1",
outDir: "src/apis/v1",
request: "import request from '@/utils/request';",
fileNameRule: function (url) {
return url.split("/")[2];
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>LaF 云开发</title>
</head>

<body>
Expand Down
Loading

0 comments on commit 9782423

Please sign in to comment.