This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
86 lines (86 loc) · 1.56 KB
/
config.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
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
80
81
82
83
84
85
86
{
"host": "0.0.0.0",
"port": 8000,
"frameworks_dir": "frameworks",
"virtualenvs_dir": "/virtualenvs",
"warmup_seconds": 5,
"wrk": [
{
"concurrency": 4,
"threads": 4,
"duration": 15
},
{
"concurrency": 100,
"threads": 100,
"duration": 15
}
],
"rounds": 3,
"tests": [
{
"name": "Hello World",
"filename": "hello.py"
}
],
"frameworks": [
{
"name": "Flask",
"enabled": true,
"requirements": [
"flask==1.0.2",
"gunicorn==19.9.0",
"meinheld==0.6.1"
],
"dirname": "flask"
},
{
"name": "Django",
"enabled": true,
"requirements": [
"django==2.1.4",
"gunicorn==19.9.0",
"meinheld==0.6.1"
],
"dirname": "django"
},
{
"name": "Uvicorn",
"enabled": true,
"requirements": [
"uvicorn==0.3.20",
"gunicorn==19.9.0"
],
"dirname": "uvicorn"
},
{
"name": "Starlette",
"enabled": true,
"requirements": [
"starlette==0.9.9",
"uvicorn==0.3.20",
"gunicorn==19.9.0"
],
"dirname": "starlette"
},
{
"name": "Responder",
"enabled": true,
"requirements": [
"responder==1.1.2",
"starlette==0.8.8",
"gunicorn==19.9.0"
],
"dirname": "responder"
},
{
"name": "Bocadillo",
"enabled": true,
"requirements": [
"bocadillo==0.7.0",
"gunicorn==19.9.0"
],
"dirname": "bocadillo"
}
]
}