Skip to content

Commit

Permalink
set default storage mode to local to match default.env
Browse files Browse the repository at this point in the history
  • Loading branch information
hv0905 committed May 2, 2024
1 parent 19038db commit 0ef4dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def enabled(self):


class StorageSettings(BaseModel):
method: StorageMode = StorageMode.DISABLED # set designed to be "disabled" for compatibility checking in StaticFileSettings
method: StorageMode = StorageMode.LOCAL # set designed to be "disabled" for compatibility checking in StaticFileSettings
s3: S3StorageSettings = S3StorageSettings()
local: LocalStorageSettings = LocalStorageSettings()

Expand Down

0 comments on commit 0ef4dd0

Please sign in to comment.