forked from antoinebou12/uml-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
48 lines (48 loc) · 999 Bytes
/
vercel.json
File metadata and controls
48 lines (48 loc) · 999 Bytes
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
{
"version": 2,
"buildCommand": "pip install -r requirements.txt -r requirements-dev.txt",
"installCommand": "pip install --upgrade pip",
"framework": null,
"outputDirectory": ".vercel/output/static",
"builds": [
{
"src": "app.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "50mb",
"runtime": "python3.10"
}
},
{
"src": "favicon.ico",
"use": "@vercel/static"
},
{
"src": ".well-known/**",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/.well-known/(.*)",
"dest": "/.well-known/$1"
},
{
"src": "/logo.png",
"dest": "/favicon.ico"
},
{
"src": "/(.*)",
"dest": "/app.py"
}
],
"env": {
"KROKI_SERVER": "https://kroki.io",
"VERCEL_OUTPUT_DIR": "/tmp/diagrams"
},
"functions": {
"app.py": {
"includeFiles": "mcp/**,kroki/**,mermaid/**,plantuml/**,D2/**,*.py,*.json,*.ico,.well-known/**"
}
}
}