pgadmin4/web/pgAdmin4.wsgi
2016-08-18 13:43:00 +01:00

9 lines
167 B
Python

import os
import sys
root = os.path.dirname(os.path.realpath(__file__))
if sys.path[0] != root:
sys.path.insert(0, root)
from pgAdmin4 import app as application