https://github.com/davecaos/jaws3
Jaws3 is an Erlang library for upload files easily to AWS S3
https://github.com/davecaos/jaws3
Last synced: over 1 year 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 (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T02:45:28.000Z (almost 9 years ago)
- Last Synced: 2025-03-10T23:52:48.830Z (over 1 year ago)
- Language: Erlang
- Homepage:
- Size: 859 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jaws3
[](https://hex.pm/packages/jaws3)
[](https://hex.pm/packages/jaws3)
[](https://hex.pm/packages/jaws3)

---------
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"]).
```