-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvercel.json
More file actions
97 lines (97 loc) · 2.85 KB
/
vercel.json
File metadata and controls
97 lines (97 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"redirects": [
{
"source": "/toolhive/quickstart",
"destination": "/toolhive/guides-cli/quickstart",
"permanent": false
},
{
"source": "/toolhive/tutorials/toolhive-operator",
"destination": "/toolhive/guides-k8s/quickstart",
"permanent": true
},
{
"source": "/toolhive/tutorials/quickstart-ui",
"destination": "/toolhive/guides-ui/quickstart",
"permanent": true
},
{
"source": "/toolhive/tutorials/quickstart-cli",
"destination": "/toolhive/guides-cli/quickstart",
"permanent": true
},
{
"source": "/toolhive/tutorials/quickstart-k8s",
"destination": "/toolhive/guides-k8s/quickstart",
"permanent": true
},
{
"source": "/toolhive/tutorials/quickstart-vmcp",
"destination": "/toolhive/guides-vmcp/quickstart",
"permanent": true
},
{
"source": "/toolhive/tutorials/opentelemetry",
"destination": "/toolhive/integrations/opentelemetry",
"permanent": true
},
{
"source": "/toolhive/tutorials/vault-integration",
"destination": "/toolhive/integrations/vault",
"permanent": true
},
{
"source": "/toolhive/tutorials/aws-sts-integration",
"destination": "/toolhive/integrations/aws-sts",
"permanent": true
},
{
"source": "/toolhive/tutorials/k8s-ingress-ngrok",
"destination": "/toolhive/integrations/ingress-ngrok",
"permanent": true
},
{
"source": "/toolhive/tutorials/authorization-with-okta",
"destination": "/toolhive/integrations/okta",
"permanent": true
},
{
"source": "/toolhive/guides-k8s/deploy-registry",
"destination": "/toolhive/guides-registry/deploy-operator",
"permanent": true
},
{
"source": "/toolhive/guides-registry/deploy-registry",
"destination": "/toolhive/guides-registry/deploy-operator",
"permanent": true
},
{
"source": "/toolhive/guides-k8s/logging-infrastructure",
"destination": "/toolhive/guides-k8s/logging",
"permanent": true
},
{
"source": "/toolhive/guides-k8s/tool-config",
"destination": "/toolhive/guides-k8s/customize-tools",
"permanent": true
},
{
"source": "/toolhive/guides-mcp/meta-mcp",
"destination": "/toolhive/tutorials/mcp-optimizer",
"permanent": true
},
{
"source": "/toolhive/guides-k8s/deploy-operator-helm",
"destination": "/toolhive/guides-k8s/deploy-operator",
"permanent": true
},
{
"source": "/toolhive/reference/registry-schema",
"destination": "/toolhive/reference/registry-schema-toolhive",
"permanent": true
}
],
"installCommand": "dnf install -q -y jq && npm install",
"buildCommand": "./scripts/install-thv.sh && npm run build"
}