Created
March 12, 2020 20:57
-
-
Save thinkmicroservices/38ff220d838626e8d2b4ccbe5bbbb174 to your computer and use it in GitHub Desktop.
NotificationService: application.yml
This file contains hidden or 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
| server: | |
| port: 8080 | |
| info: | |
| app: | |
| name: Notification Service | |
| description: Provides an outbound notification service endpoint for email and sms | |
| version: 1.0.0 | |
| spring: | |
| cloud: | |
| stream: | |
| bindings: | |
| smsMessageChannel: | |
| destination: SmsMessages | |
| emailMessageChannel: | |
| destination: EmailMessages | |
| default: | |
| contentType: application/json | |
| management: | |
| endpoints: | |
| web: | |
| exposure: | |
| include: info,health,metrics |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment