| 12345678910111213141516171819202122232425262728293031 |
- #
- # Integration Test Config: GitHub OAuth2 Authentication
- #
- listenAddressSingleHTTPFrontend: 0.0.0.0:1337
- logLevel: "DEBUG"
- checkForUpdates: false
- # Enable GitHub OAuth2 authentication
- authOAuth2RedirectUrl: "http://localhost:1337/oauth2/callback"
- authOAuth2Providers:
- github:
- name: github
- title: "Good old GitHub"
- clientId: "test-client-id"
- clientSecret: "test-client-secret"
- # Require login for guests
- authRequireGuestsToLogin: true
- # Simple actions for testing
- actions:
- - title: Ping Google.com
- shell: echo "ping google.com"
- icon: ping
- - title: sleep 2 seconds
- shell: sleep 2
- icon: "🥱"
|