This commit is contained in:
msyu
2025-08-18 10:59:40 +03:00
parent 89017a2e92
commit 16a0fa8806
5 changed files with 150 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"ds_dwh_class": "org.postgresql.Driver",
"ds_dwh_connectionString": "jdbc:postgresql://db-services.adl.nubes.ru:5432/dwh",
"ds_dwh_username": "smishchuk",
"ds_dwh_password": "encrypted:*******",
"ds_dwh_connectionLimit": "5",
"ds_billing_s3_class": "org.postgresql.Driver",
"ds_billing_s3_connectionString": "jdbc:postgresql://db-services.adl.nubes.ru:5432/billing",
"ds_billing_s3_username": "s3billing",
"ds_billing_s3_password": "encrypted:*******",
"ds_billing_s3_connectionLimit": "5",
"ds_billing_vc_class": "org.postgresql.Driver",
"ds_billing_vc_connectionString": "jdbc:postgresql://db-services.adl.nubes.ru:5432/billing",
"ds_billing_vc_username": "vc_billing",
"ds_billing_vc_password": "encrypted:*******",
"ds_billing_vc_connectionLimit": "5"
}
+20
View File
@@ -0,0 +1,20 @@
REM set Windows env
setx ds_dwh_class org.postgresql.Driver /M
setx ds_dwh_connectionString jdbc:postgresql://db-services.adl.nubes.ru:5432/dwh /M
setx ds_dwh_username smishchuk /M
setx ds_dwh_password encrypted:******* /M
setx ds_dwh_connectionLimit 5 /M
setx ds_billing_s3_class org.postgresql.Driver /M
setx ds_billing_s3_connectionString jdbc:postgresql://db-services.adl.nubes.ru:5432/billing /M
setx ds_billing_s3_username s3billing /M
setx ds_billing_s3_password encrypted::******* /M
setx ds_billing_s3_connectionLimit 5 /M
setx ds_billing_vc_class org.postgresql.Driver /M
setx ds_billing_vc_connectionString jdbc:postgresql://db-services.adl.nubes.ru:5432/billing /M
setx ds_billing_vc_username vc_billing /M
setx ds_billing_vc_password encrypted::******* /M
setx ds_billing_vc_connectionLimit 5 /M
pause