mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 02:00:19 -06:00
28f45ea9f9
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.
28 lines
613 B
C
28 lines
613 B
C
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// pgAdmin4.h - Main application header
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PGADMIN4_H
|
|
#define PGADMIN4_H
|
|
|
|
// QT headers
|
|
#include <QtGlobal>
|
|
|
|
#if QT_VERSION >= 0x050000
|
|
#include <QtWidgets>
|
|
#else
|
|
#include <QApplication>
|
|
#endif
|
|
|
|
// char *PGA_APPNAME = "pgAdmin 4";
|
|
const QString PGA_APPNAME = QString("pgAdmin 4");
|
|
|
|
#endif // PGADMIN4_H
|