forked from Agentscreator/engram-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
46 lines (46 loc) · 1.8 KB
/
Copy pathvercel.json
File metadata and controls
46 lines (46 loc) · 1.8 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
{
"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
},
"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/**}"
}
},
"rewrites": [
{ "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" }
]
}