changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > infra > home / hgweb.wsgi

revision 60: 64f785aa94f5
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/hgweb.wsgi	Sun Jul 21 16:40:21 2024 -0400
     1.3@@ -0,0 +1,7 @@
     1.4+#!/usr/bin/env python3
     1.5+config = b"/home/vc/hgweb.conf"
     1.6+# enable demandloading to reduce startup time
     1.7+from mercurial import demandimport; demandimport.enable()
     1.8+from mercurial.hgweb import hgweb, wsgicgi
     1.9+application = hgweb(config)
    1.10+wsgicgi.launch(application)