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
Is your feature request related to a problem? Please describe.
I would like to use a S3 Compatible Storage Backend during local development and configure it using config.toml.
Describe the solution you'd like
I would like to be able to specify the following env variables to the storage api server:
STORAGE_BACKEND=s3
######################################## S3 Backend#######################################
STORAGE_S3_BUCKET=supa-storage-bucket
STORAGE_S3_MAX_SOCKETS=200
STORAGE_S3_ENDPOINT=http://127.0.0.1:9230
STORAGE_S3_FORCE_PATH_STYLE=true
STORAGE_S3_REGION=local
# unsure if these are right but don't think connection is being made to minio anyway
AWS_ACCESS_KEY_ID=minioadmin
AWS_SECRET_ACCESS_KEY=minioadmin
Though, separate I wonder if it possible to have a more general API to pass/pipe in whatever environment variables are specified in the config.toml for the particular service so it is easier to try out individual feature changes without forking the CLI.
Describe alternatives you've considered
My original problem is the file storage backend is not performant for range requests on large files please see my original discussion in the storage repo (supabase/storage#540).
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I would like to use a S3 Compatible Storage Backend during local development and configure it using
config.toml
.Describe the solution you'd like
I would like to be able to specify the following env variables to the storage api server:
Though, separate I wonder if it possible to have a more general API to pass/pipe in whatever environment variables are specified in the config.toml for the particular service so it is easier to try out individual feature changes without forking the CLI.
Describe alternatives you've considered
My original problem is the file storage backend is not performant for range requests on large files please see my original discussion in the storage repo (supabase/storage#540).
The text was updated successfully, but these errors were encountered: