Advertisement
Guest User

local.yml for the bot

a guest
Jul 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. # Default Config File
  2. # Override properties in your own "local" config
  3. # Note: some properties may also be overriden by custom-environment-variables.yml
  4.  
  5. # Web Service Config
  6. name: hbf-broadcast
  7. version: 1.0.0
  8. env: dev
  9. host: 0.0.0.0 # bind to all network interfaces
  10. port: 8090 # default port for our app
  11.  
  12. #Client Configuration
  13. client:
  14. S4B: false
  15. FB: true
  16.  
  17. #Db Configuration
  18. mongo:
  19. url: mongodb://127.0.0.1:27017/baptism-bot
  20.  
  21. # Facebook Messenger
  22. facebook:
  23. graph_version: v2.11
  24. page_access_token: EAAFrZB5EzIZAIBAMUevp6a4Dmt3EQBffEYqxMXbolKZCT7EcZBpy30XoOH7pmo2UsQGPkvCUnh7tkPB1hPXGsAZAq9uYqxbFFbCWijlyANmVEImq60xTM0AQPBQrNa0NEkf4yrHyC6iLGe3ZA5tqVlOPA9PTmddXs3mkAwrumqLQZDZD"
  25.  
  26. # Skype for Business
  27. skype_for_business:
  28. client_id:
  29. client_secret:
  30. bot_sip_uri:
  31. bot_domain_uri:
  32.  
  33. # Broadcast Service
  34. broadcast:
  35. max_users_per_batch: 10
  36. time_interval: 10
  37.  
  38. # Logging configuration
  39. logging:
  40. default_logger: file
  41. levels: info
  42. handlers:
  43. console:
  44. level: debug
  45. file:
  46. name: ./hbf-broadcast-dev.log
  47. level: debug
  48. maxBytes: 1048576
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement