feat: каркас Express + pg, health check

This commit is contained in:
2026-05-29 21:56:20 +03:00
commit 814625ef57
5 changed files with 114 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "ipwhitelist",
"version": "0.1.0",
"description": "IP WhiteList microservice for cloud provider",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js"
},
"dependencies": {
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.1",
"pg": "^8.13.1"
}
}