mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Upon startup, the runtime will attempt to locate pgAdmin4.py in a number of different relative locations. Once found, it will execute it in a new thread. The main window is then created and the brower's initial page is set to the root of the CherryPy server. At present, that's http://127.0.0.1:8080.
8 lines
231 B
Python
8 lines
231 B
Python
import warnings
|
|
warnings.warn('cherrypy.lib.http has been deprecated and will be removed '
|
|
'in CherryPy 3.3 use cherrypy.lib.httputil instead.',
|
|
DeprecationWarning)
|
|
|
|
from cherrypy.lib.httputil import *
|
|
|