Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davecaos/jaws3

Jaws3 is an Erlang library for upload files easily to AWS S3
https://github.com/davecaos/jaws3

Last synced: 9 days ago
JSON representation

Jaws3 is an Erlang library for upload files easily to AWS S3

Awesome Lists containing this project

README

        

# jaws3
[![Hex.pm](https://img.shields.io/hexpm/v/jaws3.svg?style=flat-square)](https://hex.pm/packages/jaws3)
[![Hex.pm](https://img.shields.io/hexpm/dt/jaws3.svg?style=flat-square)](https://hex.pm/packages/jaws3)
[![License](http://img.shields.io/hexpm/l/jaws3.svg?style=flat)](https://hex.pm/packages/jaws3)

![S3](https://user-images.githubusercontent.com/6124495/29745357-ea11e7ba-8a8e-11e7-9a4e-b95823c12011.png)
---------
An Erlang/Elixir application for upload files easily to AWS S3

First et al, you have to add yours aws s3 certificates in the [sys.config](https://github.com/davecaos/jaws3/blob/master/rel/sys.config) file.

```erlang
[
{jaws3,
[
{s3_access_key, "SECRET_KEY"},
{s3_access_secret, "ACCESS_SECRET"},
{s3_bucket, "BUCKET_NAME"}
]
}
].
```
---------

Example:
```erlang
Eshell V7.0 (abort with ^G)
1> jaws:upload_files(["/users/davecaos/avatar.jpg", "vacations.gif"]).

```