Skip to content

Commit

Permalink
fix(configs): fix broken configs
Browse files Browse the repository at this point in the history
  • Loading branch information
yossi-eynav committed Feb 13, 2024
1 parent 4f1bcc5 commit 5d7661d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions client/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
},
"analytics": {
"ga": {
"enabled": false,
"ua": ""
"enabled": true,
"ua": "UA-122025557-1"
},
"hotjar": {
"enabled": false,
"hjid": 0,
"hjsv": 0
"enabled": true,
"hjid": 2234872,
"hjsv": 6
}
}
}
3 changes: 3 additions & 0 deletions server/config/custom-environment-variables.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"geocoder": {
"apiKey": "SERVER_GEOCODER_API_KEY"
},
"session": {
"secret": "SERVER_SESSION_SECRET"
},
Expand Down
8 changes: 4 additions & 4 deletions server/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
"debug": "logs/debug.log"
},
"aws": {
"useS3ForTreeFiles": false,
"treeBucketName": "treeBucketName"
"useS3ForTreeFiles": true,
"treeBucketName": "prd-service-tree-c281bf34"
},
"trees": {
"rawDataDir": "/tmp/raw_trees",
"geoCodingInterval" : 30000,
"geoCodingInterval" : 5000,
"maxPermits": 5,
"haifaUrl" : "https://stg-service-tree-6b3da185.s3.eu-west-1.amazonaws.com/haifa/rptPirsum.xlsx",
"hodHasharonUrl": "https://www.hod-hasharon.muni.il/%D7%91%D7%A7%D7%A9%D7%95%D7%AA-%D7%95%D7%A8%D7%99%D7%A9%D7%99%D7%95%D7%A0%D7%95%D7%AA-%D7%9B%D7%A8%D7%99%D7%AA%D7%94-2023/",
Expand All @@ -59,7 +59,7 @@
},
"locationSearch": {
"dbDistanceInMeters": false,
"filterPlansRadiusKm": null
"filterPlansRadiusKm": 10
},
"paymentServices": {
"baseURL": "https://icom.yaad.net"
Expand Down

0 comments on commit 5d7661d

Please sign in to comment.