webserver: Added a simple webserver to serve a project's reports.

- e.g. sudo -H vigil-webserver my_project
  then see http://localhost:80
This commit is contained in:
Andrew Hamilton 2018-05-13 21:23:57 +10:00
parent 748f6f932b
commit 7cfbcae685
7 changed files with 303 additions and 5 deletions

View file

@ -21,4 +21,5 @@ setup(name="vigil",
package_data={"vigil": ["LS_COLORS.sh", "tools.yaml"]},
entry_points={"console_scripts":
["vigil=vigil.__main__:entry_point",
"vigil-worker=vigil.worker:main"]})
"vigil-worker=vigil.worker:main",
"vigil-webserver=vigil.webserver:main"]})