sawa-control-panel/backend/recipes/pgadmin/recipe.json

33 lines
No EOL
808 B
JSON

{
"id": "pgadmin",
"name": "pgAdmin 4",
"version": "latest",
"category": "Database Utility",
"description": "Comprehensive design and management interface for PostgreSQL.",
"installDir": "/opt/pgadmin",
"fetch": {
"type": "none"
},
"dependencies": [
"python3",
"py3-pip",
"py3-flask"
],
"service": {
"type": "pm2",
"name": "pgadmin",
"command": "sh -c 'source /opt/pgadmin/pgadmin.env && python3 $PGADMIN_PATH'",
"user": "pgadmin"
},
"vhost": {
"type": "proxy",
"proxyPort": 5050,
"defaultSubdomain": "pgadmin.home1"
},
"steps": [
{
"name": "Execute Install Script",
"cmd": "sh \"$SAWA_RECIPE_DIR/install.sh\""
}
]
}