1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads 2107c58d32 added shebangs
2019-05-13 12:48:25 -07:00

14 lines
311 B
Python

#!/usr/bin/env python3
import os
import hyperglass
from hyperglass.hyperglass import app
application = app
hyperglass_root = os.path.dirname(hyperglass.__file__)
static = os.path.join(hyperglass_root, "static")
if __name__ == "__main__":
application.renderCSS()
application.run(static_folder=static)