config.yaml 629 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Integration Test Config: GitHub OAuth2 Authentication
  3. #
  4. listenAddressSingleHTTPFrontend: 0.0.0.0:1337
  5. logLevel: "DEBUG"
  6. checkForUpdates: false
  7. # Enable GitHub OAuth2 authentication
  8. authOAuth2RedirectUrl: "http://localhost:1337/oauth2/callback"
  9. authOAuth2Providers:
  10. github:
  11. name: github
  12. title: "Good old GitHub"
  13. clientId: "test-client-id"
  14. clientSecret: "test-client-secret"
  15. # Require login for guests
  16. authRequireGuestsToLogin: true
  17. # Simple actions for testing
  18. actions:
  19. - title: Ping Google.com
  20. shell: echo "ping google.com"
  21. icon: ping
  22. - title: sleep 2 seconds
  23. shell: sleep 2
  24. icon: "&#x1F971"