1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2019-06-07 18:33:49 -07:00

15 lines
328 B
Python

"""
https://github.com/checktheroads/hyperglass
Gunicorn WSGI Target
"""
import os
import hyperglass.hyperglass
application = hyperglass.hyperglass.app
hyperglass_root = os.path.dirname(hyperglass.__file__)
static = os.path.join(hyperglass_root, "static")
if __name__ == "__main__":
application.run(static_folder=static)