forked from the-benchmarker/web-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use io (stderr chanel) instead of file on benchmark (the-benchmarker#365) * [Japronto] Support multicore (the-benchmarker#366) * support multicore * Support multicore * fix typo * update koa to 2.5.3 (the-benchmarker#367) * setup dependencies.io * specify python version on dependencies.yml * specify python version under x.y.z format for deps
- Loading branch information
Showing
4 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
version: 2 | ||
|
||
dependencies: | ||
|
||
- type: python | ||
path: python/flask/requirements.txt | ||
|
||
- type: python | ||
path: python/tornado/requirements.txt | ||
|
||
- type: python | ||
path: python/quart/requirements.txt | ||
settings: | ||
python_version: 3.6.6 | ||
|
||
- type: python | ||
path: python/bottle/requirements.txt | ||
|
||
- type: python | ||
path: python/vibora/requirements.txt | ||
settings: | ||
python_version: 3.6.6 | ||
|
||
- type: python | ||
path: python/aiohttp/requirements.txt | ||
settings: | ||
python_version: 3.6.6 | ||
|
||
- type: python | ||
path: python/sanic/requirements.txt | ||
|
||
- type: python | ||
path: python/japronto/requirements.txt | ||
settiings: | ||
python_version: 3.6.6 | ||
|
||
- type: python | ||
path: python/django/requirements.txt | ||
|
||
- type: js | ||
path: node/restify/package.json | ||
|
||
- type: js | ||
path: node/express/package.json | ||
|
||
- type: js | ||
path: node/fastify/package.json | ||
|
||
- type: js | ||
path: node/hapi/package.json | ||
|
||
- type: js | ||
path: node/polka/package.json | ||
|
||
- type: js | ||
path: node/koa/package.json | ||
|
||
- type: js | ||
path: node/rayo/package.json | ||
|
||
- type: php | ||
path: php/symfony/composer.json | ||
|
||
- type: php | ||
path: php/laravel/composer.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dependencies": { | ||
"koa": "2.5.1", | ||
"koa-router": "7.4.0" | ||
"koa": "~2.5.3", | ||
"koa-router": "~7.4.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ COPY requirements.txt server.py ./ | |
|
||
EXPOSE 3000 | ||
|
||
CMD python server.py | ||
CMD python server.py $(nproc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters