refactor, tweak html layout

This commit is contained in:
Bryce Allen
2015-03-19 19:59:45 -05:00
parent 6d585a39d8
commit 16df6773d9
3 changed files with 29 additions and 19 deletions

8
web/mhapi_fcgi.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python
from flup.server.fcgi import WSGIServer
from mhapi_wsgi import application
if __name__ == '__main__':
WSGIServer(application).run()