22 lines
840 B
Python
22 lines
840 B
Python
#pgAdmin Custom config
|
|
|
|
##########################################################################
|
|
# Misc stuff
|
|
##########################################################################
|
|
|
|
# Languages we support in the UI
|
|
LANGUAGES = {
|
|
'en': 'English'
|
|
}
|
|
|
|
##########################################################################
|
|
# External Database Settings
|
|
##########################################################################
|
|
CONFIG_DATABASE_URI = 'postgresql://pgadmin:DBPassword@localhost:5432/pgadmin'
|
|
|
|
##########################################################################
|
|
# In server mode, SHARED_STORAGE settings
|
|
##########################################################################
|
|
|
|
# Locations
|
|
SHARED_STORAGE = [{ 'name': 'Shared-Storage', 'path': '/var/lib/pgadmin/storage/shared', 'restricted_access': True}] |