mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
refactor: move settings and secrets stores to app_server (#14165)
Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
@@ -22,10 +22,10 @@ class ServerConfig(ServerConfigInterface):
|
||||
hide_llm_settings = os.environ.get('HIDE_LLM_SETTINGS', 'false') == 'true'
|
||||
# This config is used to hide the microagent management page from the users for now. We will remove this once we release the new microagent management page.
|
||||
settings_store_class: str = (
|
||||
'openhands.storage.settings.file_settings_store.FileSettingsStore'
|
||||
'openhands.app_server.settings.file_settings_store.FileSettingsStore'
|
||||
)
|
||||
secret_store_class: str = (
|
||||
'openhands.storage.secrets.file_secrets_store.FileSecretsStore'
|
||||
'openhands.app_server.secrets.file_secrets_store.FileSecretsStore'
|
||||
)
|
||||
user_auth_class: str = (
|
||||
'openhands.server.user_auth.default_user_auth.DefaultUserAuth'
|
||||
|
||||
Reference in New Issue
Block a user