getpgdata: замена Flask на Node.js (Express + pg) приложение для доступа к PostgreSQL

This commit is contained in:
naeel
2026-08-18 18:14:33 +04:00
parent 5c5e11c5a8
commit b061dcd774
16 changed files with 1379 additions and 439 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"name": "getpgdata",
"version": "1.0.0",
"description": "Node.js приложение для доступа к PostgreSQL (managed k8s, internal-only)",
"main": "server.js",
"scripts": {
"start": "node server.js",
"check": "node -c server.js"
},
"dependencies": {
"ejs": "^3.1.10",
"express": "^4.19.2",
"pg": "^8.11.5"
}
}