diff --git a/htman/htman.cgi b/htman/htman.cgi new file mode 100755 index 0000000..3ad105c --- /dev/null +++ b/htman/htman.cgi @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + + +import os +import sys +sys.path.insert(0, os.path.dirname(__file__)) + +from htman import bottle + +bottle.run(server='cgi')