You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
4.0 KiB

  1. # Go-NEB Configuration File
  2. #
  3. # This file provides an alternative way to configure Go-NEB which does not involve HTTP APIs.
  4. #
  5. # This file can be supplied to go-neb by the environment variable `CONFIG_FILE=config.yaml`.
  6. # It will force Go-NEB to operate in "config" mode. This means:
  7. # - Go-NEB will ONLY use the data contained inside this file.
  8. # - All of Go-NEB's /admin HTTP listeners will be disabled. You will be unable to add new services at runtime.
  9. # - The environment variable `DATABASE_URL` will be ignored and an in-memory database will be used instead.
  10. #
  11. # This file is broken down into 4 sections which matches the following HTTP APIs:
  12. # - /configureClient
  13. # - /configureAuthRealm
  14. # - /configureService
  15. # - /requestAuthSession (redirects not supported)
  16. # The list of clients which Go-NEB is aware of.
  17. # Delete or modify this list as appropriate.
  18. # See the docs for /configureClient for the full list of options:
  19. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ClientConfig
  20. clients:
  21. - UserID: "@goneb:localhost"
  22. AccessToken: "MDASDASJDIASDJASDAFGFRGER"
  23. HomeserverURL: "http://localhost:8008"
  24. Sync: true
  25. AutoJoinRooms: true
  26. DisplayName: "Go-NEB!"
  27. - UserID: "@another_goneb:localhost"
  28. AccessToken: "MDASDASJDIASDJASDAFGFRGER"
  29. HomeserverURL: "http://localhost:8008"
  30. Sync: false
  31. AutoJoinRooms: false
  32. DisplayName: "Go-NEB!"
  33. # The list of realms which Go-NEB is aware of.
  34. # Delete or modify this list as appropriate.
  35. # See the docs for /configureAuthRealm for the full list of options:
  36. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureAuthRealmRequest
  37. realms:
  38. - ID: "github_realm"
  39. Type: "github"
  40. Config: {} # No need for client ID or Secret as Go-NEB isn't generating OAuth URLs
  41. # The list of *authenticated* sessions which Go-NEB is aware of.
  42. # Delete or modify this list as appropriate.
  43. # The full list of options are shown below: there is no single HTTP endpoint
  44. # which maps to this section.
  45. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#Session
  46. sessions:
  47. - SessionID: "your_github_session"
  48. RealmID: "github_realm"
  49. UserID: "@YOUR_USER_ID:localhost"
  50. Config:
  51. # Populate these fields by generating a "Personal Access Token" on github.com
  52. AccessToken: "YOUR_GITHUB_ACCESS_TOKEN"
  53. Scopes: "admin:org_hook,admin:repo_hook,repo,user"
  54. # The list of services which Go-NEB is aware of.
  55. # Delete or modify this list as appropriate.
  56. # See the docs for /configureService for the full list of options:
  57. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureServiceRequest
  58. services:
  59. - ID: "giphy_service"
  60. Type: "giphy"
  61. UserID: "@goneb:localhost" # requires a Syncing client
  62. Config:
  63. api_key: "qwg4672vsuyfsfe"
  64. - ID: "guggy_service"
  65. Type: "guggy"
  66. UserID: "@goneb:localhost" # requires a Syncing client
  67. Config:
  68. api_key: "2356saaqfhgfe"
  69. - ID: "rss_service"
  70. Type: "rssbot"
  71. UserID: "@another_goneb:localhost"
  72. Config:
  73. feeds:
  74. "http://lorem-rss.herokuapp.com/feed?unit=second&interval=60":
  75. rooms: ["!qmElAGdFYCHoCJuaNt:localhost"]
  76. - ID: "github_cmd_service"
  77. Type: "github"
  78. UserID: "@goneb:localhost" # requires a Syncing client
  79. Config:
  80. RealmID: "github_realm"
  81. # Make sure your BASE_URL can be accessed by Github!
  82. - ID: "github_webhook_service"
  83. Type: "github-webhook"
  84. UserID: "@another_goneb:localhost"
  85. Config:
  86. RealmID: "github_realm"
  87. ClientUserID: "@YOUR_USER_ID:localhost" # needs to be an authenticated user so Go-NEB can create webhooks.
  88. Rooms:
  89. "!someroom:id":
  90. Repos:
  91. "matrix-org/synapse":
  92. Events: ["push", "issues"]
  93. "matrix-org/dendron":
  94. Events: ["pull_request"]
  95. "!anotherroom:id":
  96. Repos:
  97. "matrix-org/synapse":
  98. Events: ["push", "issues"]
  99. "matrix-org/dendron":
  100. Events: ["pull_request"]