Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/davecaos/jaws3
- Owner: davecaos
- License: mit
- Created: 2016-06-15T02:18:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T02:45:28.000Z (about 7 years ago)
- Last Synced: 2024-10-11T02:19:17.227Z (27 days ago)
- Language: Erlang
- Homepage:
- Size: 859 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 S3First 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"]).
```