diff options
| author | 2019-06-09 23:22:04 +0200 | |
|---|---|---|
| committer | 2019-06-09 23:22:04 +0200 | |
| commit | 803d96c9a7f8b2d80b3f9b10d35ceb6440fa431e (patch) | |
| tree | ada556ca7e1aff5e650afe58139bc20d3d47dfc0 /Pipfile | |
| parent | Merge pull request #23 from python-discord/falcon (diff) | |
| parent | Respond to eval with stdout, stderr, and the return code (diff) | |
Merge pull request #24 from python-discord/refactor/nsjail
Improve NsJail
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 3 | 
1 files changed, 2 insertions, 1 deletions
@@ -21,6 +21,7 @@ flake8-tidy-imports = "*"  flake8-todo = "*"  flake8-string-format = "*"  flake8-formatter-junit-xml = "*" +flake8-quotes = "*"  [requires]  python_version = "3.7" @@ -30,7 +31,7 @@ lint = "flake8"  precommit = "pre-commit install"  test = "pytest tests --cov . --cov-report term-missing -v"  report = "pytest tests --cov . --cov-report=html" -snekbox = "gunicorn -w 2 -b 0.0.0.0:8060 snekbox.api.app" +snekbox = "gunicorn -w 2 -b 0.0.0.0:8060 --logger-class snekbox.GunicornLogger --access-logfile - snekbox.api.app"  buildbox = "docker build -t pythondiscord/snekbox:latest -f docker/Dockerfile ."  pushbox = "docker push pythondiscord/snekbox:latest"  buildboxbase = "docker build -t pythondiscord/snekbox-base:latest -f docker/base.Dockerfile ."  |