Skip to content

Commit

Permalink
Updated documentation for config
Browse files Browse the repository at this point in the history
  • Loading branch information
dborowiecki committed Jul 5, 2024
1 parent 4be3cd0 commit f13893f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
14 changes: 13 additions & 1 deletion sigeca_data_import_microservice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,19 @@ Create the `config.json` file with your specific settings. It can be created bas
"local_bind_port": 5559 // Port binded to localhost
},
"sync": {
"interval_minutes": 5 // Job interval in minutes
"interval_minutes": 5, // Interval in minutes
"email_report_list": ["[email protected]", "[email protected]"] // Recipients of email report
},
"fallbacks": {
"geographicZone" : "[UUID]", // Default Geo Zone for facilities without matching one
"type": "[UUID]" // Default Facility Type for facilities without matching one
},
"smtp": {
"server_url": "smtp-example.com",
"server_port": 465,
"username": "usenrame",
"password": "password",
"sender": "sender_email"
}
}
```
Expand Down
3 changes: 2 additions & 1 deletion sigeca_data_import_microservice/config_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"sender": "sender"
},
"sync": {
"interval_minutes": 5
"interval_minutes": 5,
"email_report_list": ["[email protected]", "[email protected]"]
},
"fallbacks": {
"geographicZone" : "[UUID]",
Expand Down

0 comments on commit f13893f

Please sign in to comment.