Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:55:22 +08:00
commit 9c41543515
18 changed files with 4438 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"requires": {
"db": {
"kind": "hana",
"binding": {
"type": "cf",
"apiEndpoint": "https://api.cf.<region>.hana.ondemand.com",
"org": "<org-name>",
"space": "<space-name>",
"instance": "<hdi-service-instance-name>",
"key": "<service-key-name>"
}
}
}
}

View File

@@ -0,0 +1,21 @@
{
"VCAP_SERVICES": {
"hana": [
{
"name": "hana-db",
"label": "hana",
"tags": ["hana", "database", "relational"],
"credentials": {
"host": "<hostname>",
"port": "<port>",
"user": "<username>",
"password": "<password>",
"schema": "<schema>",
"encrypt": true,
"sslValidateCertificate": true,
"sslTrustStore": "<path-to-certificate>"
}
}
]
}
}