mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 07:55:47 +01:00
7 lines
203 B
Plaintext
7 lines
203 B
Plaintext
|
|
#!/usr/bin/env ${python}
|
||
|
|
config = "${config}"
|
||
|
|
from mercurial import demandimport; demandimport.enable()
|
||
|
|
from mercurial.hgweb import hgweb, wsgicgi
|
||
|
|
application = hgweb(config)
|
||
|
|
wsgicgi.launch(application)
|