You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/05-configuration/03-auth-providers.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,3 +43,10 @@ Obot currently supports the following authentication providers (using OAuth2):
43
43
- Google
44
44
45
45
The code for these providers is available in the [Obot tools repo](https://github.com/obot-platform/tools).
46
+
47
+
## Disabling the Bootstrap User
48
+
49
+
If you do not want to be able to log in as the bootstrap user, you can set the `OBOT_SERVER_ENABLE_BOOTSTRAP_USER` environment variable to `false`.
50
+
This will prevent you from logging in as the bootstrap user.
51
+
When you first run Obot, do not set this environment variable, because you need to be able to use the bootstrap user to set up the first auth provider.
52
+
Once that is done, you can restart the server and set this environment variable if you would like.
Copy file name to clipboardExpand all lines: pkg/services/config.go
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ type Config struct {
66
66
EnvKeys []string`usage:"The environment keys to pass through to the GPTScript server" env:"OBOT_ENV_KEYS"`
67
67
KnowledgeSetIngestionLimitint`usage:"The maximum number of files to ingest into a knowledge set" default:"3000" env:"OBOT_KNOWLEDGESET_INGESTION_LIMIT" name:"knowledge-set-ingestion-limit"`
0 commit comments