Skip to content

Commit afca90f

Browse files
Merge branch 'main' into feature/oidc-config-change
2 parents 8124a44 + e48db00 commit afca90f

File tree

18 files changed

+32323
-471
lines changed

18 files changed

+32323
-471
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414

1515
- name: Set up Node.js
16-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
16+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1717
with:
1818
node-version: 22
1919
cache: 'npm' # Added caching for faster installs

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"graphql.vscode-graphql"
4+
]
5+
}

frontend-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"backendUrl": "http://localhost:3000",
3+
"gatewayUrl": "https://gateway.ui.dev-core.mcpd.shoot.canary.k8s-hana.ondemand.com/kubernetes/graphql",
34
"landscape": "LOCAL",
45
"documentationBaseUrl": "http://localhost:3000",
56
"oidcConfig": {

graphql.config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
schema:
2+
- https://gateway.ui.dev-core.mcpd.shoot.canary.k8s-hana.ondemand.com/kubernetes/graphql:
3+
headers:
4+
Authorization: '<not needed for now>'
5+
documents: './src/**/*.{ts,tsx}'
6+
ignoreNoDocuments: true
7+
extensions:
8+
codegen:
9+
generates:
10+
./src/types/__generated__/graphql/:
11+
preset: client
12+
presetConfig:
13+
gqlTagName: graphql

0 commit comments

Comments
 (0)