An Ember-CLI-Deploy plugin to upload assets to Google Cloud Storage.
To get up and running quickly, do the following:
- Install ember-cli-deploy first.
- Ensure ember-cli-deploy-build is installed and configured.
- Install this plugin
ember install ember-cli-deploy-gcloud-storage
- Place the following configuration into
config/deploy.js
ENV['gcloud-storage'] = {
credentials: {
'private_key': '<your-private-key>',
'client_email': '<your-client-email>',
},
projectId: '<your-gcloud-project-id>',
bucket: '<your-storage-bucket>'
};
- Run the pipeline
ember deploy production
- Create bucket if it doesn't exist
- Support a manifest file
- Add more of the options that the s3 plugin has
- Tests
See CONTRIBUTING.md.