A simple file uploader built with StencilJS
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Clone the project
git clone https://github.com/cogoo/file-uploader.git
Install dependencies
npm i
Rename .env.example.js
to .env.js
and replace <YOUR_GCS_BUCKET_NAME>
with your cloud storage bucket name
const env = {
GCS_BUCKET: '<YOUR_GCS_BUCKET_NAME>',
};
To run this project:
npm start
To build the app for production, run:
npm run build
To run the unit tests once, run:
npm test
To run the unit tests and watch for file changes during development, run:
npm run test.watch
- StencilJS - The JS framework used
- Colin Ogoo - Initial work - cogoo
This project is licensed under the MIT License - see the LICENSE file for details