FileStorageApi
Library to be able to upload and manage files to different storage service azure/s3
Installation
It can be added to your project by adding
def deps do
[
{:file_storage_api, "~> 1.0"}
]
endConfiguration
Ability to set storage engine currently S3 and Azure supported.
For tests Mock can be used with the mox library.
config :file_storage_api, :storage_api, engine: AzureS3 configuration (options from ex_aws_s3 library)
config :file_storage_api, :s3_config,
host: "127.0.0.1",
scheme: "http://",
port: 9000,
access_key_id: "admin",
secret_access_key: "password",
path_style: trueFor test S3 can also be mocked by
config :file_storage_api, :s3_config, module: AwsMockAzure configuration (options from azure library)
config :file_storage_api, :azure_blob,
account_key: "password",
account_name: "user",
environment_suffix: "core.windows.net",
host: ,
development: "true" || "false"
It will need the package file in linux to be able to read mime types and work.