{"id":15383738,"url":"https://github.com/knownasilya/ember-cli-deploy-gcloud-pubsub","last_synced_at":"2026-05-20T07:36:27.858Z","repository":{"id":65993409,"uuid":"125905155","full_name":"knownasilya/ember-cli-deploy-gcloud-pubsub","owner":"knownasilya","description":"Notify that a deployment has been activated via Google PubSub.","archived":false,"fork":false,"pushed_at":"2019-05-06T15:12:51.000Z","size":381,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-18T04:32:47.034Z","etag":null,"topics":["ember","ember-addon","ember-cli-deploy-plugin","google-cloud","pubsub"],"latest_commit_sha":null,"homepage":"","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/knownasilya.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-19T18:48:24.000Z","updated_at":"2019-05-06T15:12:58.000Z","dependencies_parsed_at":"2023-03-10T23:27:15.203Z","dependency_job_id":null,"html_url":"https://github.com/knownasilya/ember-cli-deploy-gcloud-pubsub","commit_stats":{"total_commits":23,"total_committers":3,"mean_commits":7.666666666666667,"dds":"0.26086956521739135","last_synced_commit":"81b0a1f9eb3a2438ca5a1e2b4ced9a4da09d9acb"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/knownasilya/ember-cli-deploy-gcloud-pubsub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knownasilya%2Fember-cli-deploy-gcloud-pubsub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knownasilya%2Fember-cli-deploy-gcloud-pubsub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knownasilya%2Fember-cli-deploy-gcloud-pubsub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knownasilya%2Fember-cli-deploy-gcloud-pubsub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knownasilya","download_url":"https://codeload.github.com/knownasilya/ember-cli-deploy-gcloud-pubsub/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knownasilya%2Fember-cli-deploy-gcloud-pubsub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33250372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-20T04:48:54.280Z","status":"ssl_error","status_checked_at":"2026-05-20T04:48:10.851Z","response_time":356,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-addon","ember-cli-deploy-plugin","google-cloud","pubsub"],"created_at":"2024-10-01T14:39:30.773Z","updated_at":"2026-05-20T07:36:27.830Z","avatar_url":"https://github.com/knownasilya.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"ember-cli-deploy-gcloud-pubsub\n===============================\n\nNotify that a deployment has been activated via Google PubSub.\n\n[![NPM][npm-badge-img]][npm-badge-link]\n[![Build Status][travis-badge]][travis-badge-url]\n[![Ember Observer Score][ember-observer-badge]][ember-observer-url]  \n\nThis is an alternative to the webhooks plugin, which doesn't work\nin a setup where the application is clustered and the cache is local to each instance of the application, like a `Map` instance.\n\n\u003e Note: If you use Redis, the webhook plugin should work for you, even if clustered. \n\nInstallation\n-------------\n\n```sh\nember install ember-cli-deploy-gcloud-pubsub\n```\n\nRequires these other plugins:\n\n- https://github.com/ember-cli-deploy/ember-cli-deploy\n- https://github.com/ember-cli-deploy/ember-cli-deploy-build\n- https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data\n\n\nUsage\n-----\n\n### Setup PubSub\n\n1. Configure the plugin to access your PubSub account.\n2. Setup PubSub to accept notifications/send notifications\n\nTo create a PubSub topic, run a deployment with the `SETUP` env var.\n\n```sh\nSETUP=true ember deploy alpha\n```\n\nThis will create a topic in PubSub which will be used for the subscription.\n\n3. Create a subscription for the topic\n\n### Use\n\n```sh\nember deploy \u003ctarget\u003e --activate\n```\n\nOr you can activate after the fact\n\n```sh\nember deploy:activate \u003ctarget\u003e --revision=\u003crevision\u003e\n```\n\n### Subscription Data\n\nThe subscription data is a stringified JSON object that contains:\n\n- `project` - name from `package.json`\n- `revisionKey` - The activated revision key\n- `previousRevisionKey` - The previous revision key\n\n### Works well with\n\n- https://github.com/knownasilya/ember-cli-deploy-gcloud-storage\n- https://github.com/mwpastore/ember-cli-deploy-sql\n\nContributing\n------------\n\n### Installation\n\n* `git clone https://github.com/knownasilya/ember-cli-deploy-gcloud-pubsub`\n* `cd ember-cli-deploy-gcloud-pubsub`\n* `npm install`\n\n### Linting\n\n* `npm run lint:js`\n* `npm run lint:js -- --fix`\n\n### Running tests\n\n* `ember test` – Runs the test suite on the current Ember version\n* `ember test --server` – Runs the test suite in \"watch mode\"\n* `ember try:each` – Runs the test suite against multiple Ember versions\n\n### Running the dummy application\n\n* `ember serve`\n* Visit the dummy application at [http://localhost:4200](http://localhost:4200).\n\nFor more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).\n\nLicense\n-------\n\nThis project is licensed under the [MIT License](LICENSE.md).\n\n[npm-badge-img]: https://badge.fury.io/js/ember-cli-deploy-gcloud-pubsub.svg\n[npm-badge-link]: http://badge.fury.io/js/ember-cli-deploy-gcloud-pubsub\n[travis-badge]: https://travis-ci.org/knownasilya/ember-cli-deploy-gcloud-pubsub.svg\n[travis-badge-url]: https://travis-ci.org/knownasilya/ember-cli-deploy-gcloud-pubsub\n[ember-observer-badge]: http://emberobserver.com/badges/ember-cli-deploy-gcloud-pubsub.svg\n[ember-observer-url]: http://emberobserver.com/addons/ember-cli-deploy-gcloud-pubsub\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknownasilya%2Fember-cli-deploy-gcloud-pubsub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknownasilya%2Fember-cli-deploy-gcloud-pubsub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknownasilya%2Fember-cli-deploy-gcloud-pubsub/lists"}