mirror of
https://github.com/YunoHost-Apps/pgadmin_ynh.git
synced 2024-09-03 19:56:38 +02:00
27 lines
545 B
INI
27 lines
545 B
INI
[uwsgi]
|
|
# Who will run the code
|
|
uid = __APP__
|
|
gid = __APP__
|
|
|
|
# Number of workers
|
|
workers = 1
|
|
|
|
# The right granted on the created socket
|
|
chmod-socket = 666
|
|
|
|
# Plugin to use and interpretor config
|
|
single-interpreter = true
|
|
master = true
|
|
plugin = python3
|
|
|
|
# Manage the subpath
|
|
manage-script-name = true
|
|
mount = __PATH__=pgAdmin4.py
|
|
|
|
# Virtualenv and python path
|
|
virtualenv = __FINALPATH__
|
|
pythonpath = __FINALPATH__
|
|
chdir = __FINALPATH__/lib/python__PYTHON_VERSION__/site-packages/pgadmin4
|
|
|
|
# The variable holding flask application
|
|
callable = app
|