grim/hgkeeper

file isExecutable
Add a caching layer to the hgweb portion. This should take some strain off of mercurial anf our cpu quota
#!/usr/bin/env python3
config = b'{{.HGWEB_CONFIG}}'
from mercurial import demandimport; demandimport.enable()
from mercurial.hgweb import hgweb, wsgicgi
application = hgweb(config)
wsgicgi.launch(application)