This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
79 lines (79 loc) · 1.46 KB
/
Copy pathvercel.json
File metadata and controls
79 lines (79 loc) · 1.46 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
{
"version": 2,
"routes": [
{
"src": "/live",
"dest": "/public/live_predictions.html"
},
{
"src": "/predictions",
"dest": "/public/predictions.html"
},
{
"src": "/sentiment",
"dest": "/public/sentiment_dashboard.html"
},
{
"src": "/api/live_data",
"dest": "/api/live.py"
},
{
"src": "/api/live",
"dest": "/api/live.py"
},
{
"src": "/api/mock_live",
"dest": "/api/mock_live.py"
},
{
"src": "/api/simple_live",
"dest": "/api/simple_live.py"
},
{
"src": "/api/basic_live",
"dest": "/api/basic_live.py"
},
{
"src": "/api/sentiment_predictions",
"dest": "/api/sentiment_predictions.py"
},
{
"src": "/active_trading_results_20250816_155531.json",
"dest": "/active_trading_results_20250816_155531.json"
},
{
"src": "/live_data.json",
"dest": "/live_data.json"
},
{
"src": "/api/(.*)",
"dest": "/api/index.py"
},
{
"src": "/",
"dest": "/public/index.html"
},
{
"src": "/(.*)",
"dest": "/public/$1"
}
],
"builds": [
{
"src": "api/basic_live.py",
"use": "@vercel/python"
},
{
"src": "api/sentiment_predictions.py",
"use": "@vercel/python"
},
{
"src": "public/**",
"use": "@vercel/static"
},
{
"src": "*.json",
"use": "@vercel/static"
}
]
}