Skip to content

Commit 121a580

Browse files
committed
get calling api now need to add lineage tab
1 parent 9e42205 commit 121a580

54 files changed

Lines changed: 14563 additions & 13466 deletions

Some content is hidden

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

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,9 @@ clickhouse-cloud-test: guard-CLICKHOUSE_CLOUD_HOST guard-CLICKHOUSE_CLOUD_USERNA
208208
pytest -n 1 -m "clickhouse_cloud" --retries 3 --junitxml=test-results/junit-clickhouse-cloud.xml
209209

210210
athena-test: guard-AWS_ACCESS_KEY_ID guard-AWS_SECRET_ACCESS_KEY guard-ATHENA_S3_WAREHOUSE_LOCATION engine-athena-install
211-
pytest -n auto -x -m "athena" --retries 3 --retry-delay 10 --junitxml=test-results/junit-athena.xml
211+
pytest -n auto -x -m "athena" --retries 3 --retry-delay 10 --junitxml=test-results/junit-athena.xml
212+
213+
214+
vscode-generate-openapi:
215+
python3 vscode/server/openapi.py
216+
cd vscode/react && npm run generate:api

package-lock.json

Lines changed: 12206 additions & 9816 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "sqlmesh",
3-
"workspaces" : [
3+
"workspaces": [
44
"vscode/extension",
55
"vscode/react",
66
"web/client"
77
],
88
"scripts": {
99
"ci": "npm run ci --workspaces"
10+
},
11+
"devDependencies": {
12+
"orval": "^7.8.0"
1013
}
11-
}
14+
}

vscode/extension/src/webviews/lineagePanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import {
6464

6565
const isProd = isProduction()
6666

67-
const externalUrl = !isProd ? "http://localhost:5173" : this.getServerUrl()
67+
const externalUrl = !isProd ? "http://localhost:5173/lineage" : this.getServerUrl() + "/lineage"
6868
const externalAuthority = new URL(externalUrl).origin;
6969

7070
// The CSP is too restrictive - it only allows frame-src but no other resources

vscode/openapi.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

vscode/react/.cta.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"framework": "react",
3+
"projectName": "react",
4+
"typescript": true,
5+
"tailwind": false,
6+
"packageManager": "npm",
7+
"toolchain": "none",
8+
"mode": "file-router",
9+
"git": true,
10+
"variableValues": {},
11+
"version": 1,
12+
"existingAddOns": []
13+
}

vscode/react/.gitignore

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
pnpm-debug.log*
8-
lerna-debug.log*
9-
101
node_modules
2+
.DS_Store
113
dist
124
dist-ssr
135
*.local
14-
15-
# Editor directories and files
16-
.vscode/*
17-
!.vscode/extensions.json
18-
.idea
19-
.DS_Store
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?

0 commit comments

Comments
 (0)