-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathnow.json
31 lines (31 loc) · 1.01 KB
/
now.json
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
{
"name": "covid19-eu-data",
"version": 2,
"routes": [
{ "src": "/(.*)",
"dest": "/dataset/(.*)",
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "OPTIONS",
"Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept, Authorization"
},
"methods": ["OPTIONS"]
},
{
"src": "/cache/(?<ct>[^/]*)",
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept",
"Access-Control-Allow-Credentials": "true"
},
"dest": "/dataset/covid-19-$ct.csv"
},
{
"src": "/raw/(?<ct>[^/]*)",
"dest": "https://raw.githubusercontent.com/covid19-eu-zh/covid19-eu-data/master/dataset/covid-19-$ct.csv"
}
],
"github": {
"silent": true
}
}