generated from ghga-de/microservice-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve auth config and remove validation function * Bump version to 2.0.0 and update usual files * Update config for change from template update Update dockerfile for testcontainers on linux
- Loading branch information
1 parent
559ecec
commit 91d7efc
Showing
15 changed files
with
641 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,9 @@ plaintext_email_template: "Dear $recipient_name,\n\n$plaintext_body\n\nWarm rega | |
html_email_template: '<!DOCTYPE html><html><head></head><body style="color: #00393f;padding: 12px;"><h2>Dear $recipient_name,</h2><p>$plaintext_body</p><p>Warm regards,</p><h3>The GHGA Team</h3></body></html>' | ||
smtp_host: 127.0.0.1 | ||
smtp_port: 587 | ||
login_user: "[email protected]" | ||
login_password: test | ||
smtp_auth: | ||
username: "[email protected]" | ||
password: test | ||
from_address: "[email protected]" | ||
use_starttls: false | ||
db_connection_str: "mongodb://mongodb:27017" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ generate_correlation_id: true | |
html_email_template: '<!DOCTYPE html><html><head></head><body style="color: #00393f;padding: | ||
12px;"><h2>Dear $recipient_name,</h2><p>$plaintext_body</p><p>Warm regards,</p><h3>The | ||
GHGA Team</h3></body></html>' | ||
kafka_max_message_size: 1048576 | ||
kafka_security_protocol: PLAINTEXT | ||
kafka_servers: | ||
- kafka:9092 | ||
|
@@ -15,8 +16,6 @@ kafka_ssl_password: '' | |
log_format: null | ||
log_level: INFO | ||
log_traceback: true | ||
login_password: '**********' | ||
login_user: [email protected] | ||
notification_event_topic: notifications | ||
notification_event_type: notification | ||
plaintext_email_template: 'Dear $recipient_name, | ||
|
@@ -31,6 +30,9 @@ plaintext_email_template: 'Dear $recipient_name, | |
The GHGA Team' | ||
service_instance_id: '001' | ||
service_name: ns | ||
smtp_auth: | ||
password: '**********' | ||
username: [email protected] | ||
smtp_host: 127.0.0.1 | ||
smtp_port: 587 | ||
use_starttls: false |
Oops, something went wrong.