Compare commits

..

No commits in common. "d49074ac09044cd641576bbe27091929cfb5aa63" and "1e71f833cab33caa421085c659c4dd71e31d6f97" have entirely different histories.

2 changed files with 6 additions and 8 deletions

View File

@ -7,7 +7,7 @@
"test": "jest"
},
"dependencies": {
"axios": "1.14.0",
"axios": "^1.3.5",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
@ -16,15 +16,13 @@
"jade": "~1.11.0",
"morgan": "~1.9.1",
"pino": "^10.3.1",
"uuid": "9.0.1"
"uuid": "^14.0.0"
},
"devDependencies": {
"jest": "^30.3.0"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./tests/setup.js"
]
"setupFiles": ["./tests/setup.js"]
}
}

View File

@ -32,7 +32,7 @@ services:
networks:
- hapi-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -p 5433"]
test: [ "CMD-SHELL", "pg_isready -p 5433" ]
interval: 20s
timeout: 10s
retries: 5
@ -95,6 +95,6 @@ volumes:
driver: local
secrets:
ssl_cert:
file: ${SSL_CERT_PATH:-./certs/server.crt)}
file: ${SSL_CERT_PATH:-./certs/server.crt}
ssl_key:
file: ${SSL_KEY_PATH:-./certs/server.key}