1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-02-01 06:49:23 +00:00
thatmattlove-hyperglass/hyperglass/wsgi.py
2019-07-10 15:57:21 -07:00

17 lines
374 B
Python

"""
https://github.com/checktheroads/hyperglass
Gunicorn WSGI Target
"""
# Standard Library Imports
import os
# Project Imports
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)