-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathvercel.json
More file actions
52 lines (52 loc) · 2.07 KB
/
vercel.json
File metadata and controls
52 lines (52 loc) · 2.07 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
{
"framework": null,
"installCommand": "pip install starlette asyncpg mcp pydantic uvicorn stripe",
"buildCommand": "",
"outputDirectory": ".",
"functions": {
"api/index.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/mcp.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}",
"maxDuration": 60,
"memory": 512
},
"api/workspace.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/install.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/dashboard_page.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/auth.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/billing.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
},
"api/conflicts.py": {
"excludeFiles": "{src/**,tests/**,docs/**,assets/**,.pytest_cache/**}"
}
},
"rewrites": [
{ "source": "/api/conflicts", "destination": "/api/conflicts" },
{ "source": "/api/conflicts/(.*)", "destination": "/api/conflicts" },
{ "source": "/mcp", "destination": "/api/mcp" },
{ "source": "/mcp/(.*)", "destination": "/api/mcp" },
{ "source": "/auth", "destination": "/api/auth" },
{ "source": "/auth/(.*)", "destination": "/api/auth" },
{ "source": "/billing", "destination": "/api/billing" },
{ "source": "/billing/(.*)", "destination": "/api/billing" },
{ "source": "/stripe/webhook", "destination": "/api/billing" },
{ "source": "/workspace", "destination": "/api/workspace" },
{ "source": "/workspace/(.*)", "destination": "/api/workspace" },
{ "source": "/install", "destination": "/api/install" },
{ "source": "/install.ps1", "destination": "/api/install" },
{ "source": "/install.cmd", "destination": "/api/install" },
{ "source": "/dashboard", "destination": "/api/dashboard_page" },
{ "source": "/(.*)", "destination": "/api/index" }
]
}