mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
14 lines
328 B
Python
14 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)
|