{"id":21106428,"url":"https://github.com/trustvox/ember-cli-deploy-minio","last_synced_at":"2025-05-17T09:40:44.305Z","repository":{"id":57223199,"uuid":"146482120","full_name":"trustvox/ember-cli-deploy-minio","owner":"trustvox","description":"An ember-cli-deploy plugin to upload to minio (AWS S3 based)","archived":false,"fork":false,"pushed_at":"2018-08-29T14:47:56.000Z","size":212,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-30T16:14:57.852Z","etag":null,"topics":["ember","ember-cli","ember-cli-addon","ember-cli-deploy-plugin"],"latest_commit_sha":null,"homepage":"https://minio.io","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trustvox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-28T17:23:20.000Z","updated_at":"2020-02-07T18:47:03.000Z","dependencies_parsed_at":"2022-08-25T12:22:27.038Z","dependency_job_id":null,"html_url":"https://github.com/trustvox/ember-cli-deploy-minio","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trustvox%2Fember-cli-deploy-minio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trustvox%2Fember-cli-deploy-minio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trustvox%2Fember-cli-deploy-minio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trustvox%2Fember-cli-deploy-minio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trustvox","download_url":"https://codeload.github.com/trustvox/ember-cli-deploy-minio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254688894,"owners_count":22112514,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ember","ember-cli","ember-cli-addon","ember-cli-deploy-plugin"],"created_at":"2024-11-20T00:26:21.425Z","updated_at":"2025-05-17T09:40:43.858Z","avatar_url":"https://github.com/trustvox.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ember-cli-deploy-minio\n\n[![Build Status](https://travis-ci.org/trustvox/ember-cli-deploy-minio.svg?branch=master)](https://travis-ci.org/trustvox/ember-cli-deploy-minio)\n[![codecov](https://codecov.io/gh/trustvox/ember-cli-deploy-minio/branch/master/graph/badge.svg)](https://codecov.io/gh/trustvox/ember-cli-deploy-minio)\n[![](https://ember-cli-deploy.github.io/ember-cli-deploy-version-badges/plugins/ember-cli-deploy-minio.svg)](http://ember-cli-deploy.github.io/ember-cli-deploy-version-badges/)\n![npm](https://img.shields.io/npm/v/ember-cli-deploy-minio.svg)\n![dependencies](https://david-dm.org/trustvox/ember-cli-deploy-minio.svg)\n\n\u003e An ember-cli-deploy plugin to upload files to minio (https://minio.io)\n\nThis plugin uploads one or more files to an Minio (S3) bucket. It could be used to upload the assets (js, css, images etc) or indeed the application's index.html.\n\n## What is an ember-cli-deploy plugin?\n\nA plugin is an addon that can be executed as a part of the ember-cli-deploy pipeline. A plugin will implement one or more of the ember-cli-deploy's pipeline hooks.\n\nFor more information on what plugins are and how they work, please refer to the [Plugin Documentation][1].\n\n## Quick Start\n\nTo get up and running quickly, do the following:\n\n- Ensure [ember-cli-deploy-build][2] is installed and configured.\n\n- Install this plugin\n\n```bash\n$ ember install ember-cli-deploy-minio\n```\n\n- Place the following configuration into `config/deploy.js`\n\n```javascript\nENV.minio = {\n  accessKey: '\u003cyour-minio-access-key\u003e',\n  secretKey: '\u003cyour-minio-secret\u003e',\n  bucket: '\u003cyour-minio-bucket\u003e',\n  endpoint: '\u003cyour-minio-server-endpoint\u003e'\n}\n```\n\n- Run the pipeline\n\n```bash\n$ ember deploy\n```\n\n## Installation\nRun the following command in your terminal:\n\n```bash\nember install ember-cli-deploy-minio\n```\n\n## ember-cli-deploy Hooks Implemented\n\nFor detailed information on what plugin hooks are and how they work, please refer to the [Plugin Documentation][1].\n\n- `configure`\n- `upload`\n\n## Configuration Options\n\nFor detailed information on how configuration of plugins works, please refer to the [Plugin Documentation][1].\n\n\u003chr/\u003e\n\n### accessKey (`required`)\n\nThe access key for the user that has the ability to upload to the `bucket`.\n\n*Default:* `undefined`\n\n### secretKey (`required`)\n\nThe secret for the user that has the ability to upload to the `bucket`. \n\n*Default:* `undefined`\n\n### bucket (`required`)\n\nThe minio bucket that the files will be uploaded to.\n\n*Default:* `undefined`\n\n### endpoint (`required`)\n\nThe endpoint where minio server is exposed like: `https://play.minio:9200`.\n\n*Default:* `undefined`\n\n### distDir\n\nThe root directory where the files matching `filePattern` will be searched for. By default, this option will use the `distDir` property of the deployment context, provided by [ember-cli-deploy-build][2].\n\n*Default:* `context.distDir`\n\n### secure\n\nDetermines if the endpoint is served from a secured connection.\n\n*Default:* `true`\n\n## Tests\n\n* `yarn test`\n\n## Why `ember build` and `ember test` don't work\n\nSince this is a node-only ember-cli addon, this package does not include many files and dependencies which are part of ember-cli's typical `ember build` and `ember test` processes.\n\n[1]: http://ember-cli-deploy.com/plugins/ \"Plugin Documentation\"\n[2]: https://github.com/ember-cli-deploy/ember-cli-deploy-build \"ember-cli-deploy-build\"\n[3]: https://github.com/ember-cli-deploy/ember-cli-deploy-gzip \"ember-cli-deploy-gzip\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrustvox%2Fember-cli-deploy-minio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrustvox%2Fember-cli-deploy-minio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrustvox%2Fember-cli-deploy-minio/lists"}