clintonhalpin / s3Uploader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

s3Uploader

A simple example of how to upload files to Amazon S3 with Node, Express, and Angular. This project is not something you will be immediatley able to integrate but rather an example of how to do it.

Configuring S3

In order to use this project you need to add your AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and a bucketName that you'll be uploading to. You can add your credentials in:

.env.development.js

module.exports = {                                                                                                            
    AWS: {
        AWS_ACCESS_KEY_ID: "Your access key",
        AWS_SECRET_ACCESS_KEY: "Your secret key",
        bucketName: "Your bucket name"
    }
}

Links:

Getting started

Install all project dependencies

# Install depenendencies
npm start

# Build front-end ( default: dist/ )
gulp dist

# Run Livereload & Node Server
gulp

Built Using

License

MIT license


Built with <3 by @clintonhalpin

About


Languages

Language:JavaScript 84.8%Language:HTML 8.9%Language:CSS 6.3%