pubsub-emulator-ui
pubsub-emulator-ui copied to clipboard
A handy UI tool that provides visibility into the gcloud pusub emulator
I needed to also pass attribute information to PubSub topics, so I wanted to open a PR for this reason.
Similar to `echocode-io/gcp-pubsub-emulator-ui` project please add possibility to predefine projects on container build, ie.: ```yaml version: "3.9" services: pubsub_emulator: image: messagebird/gcloud-pubsub-emulator:latest ports: - "8681:8681" environment: - PUBSUB_PROJECT1=test-project,topic1:topic1-sub,topic2:t2-s1:t2-s2 emulator-ui: image: ghcr.io/neoscript/pubsub-emulator-ui:latest...
The app uses `btoa`/`atob` to convert the message content to/from base-64. However, this treats the content as a binary string, using Latin1/ISO-8859-1 encoding. But most applications expect text in UTF-8...
Needed the option to send PubSub message with attributes. By all means, I'm not an angular expert. Hope this goes through.
Allow external configuration to be provided to configure URL of the pubsub emulator. Needs to be provided as an environment variable in the docker container "PUBSUB_EMULATOR_HOST" Should solve this issue...
hey 👋 I have a docker-compose that spin up everything, just a bit different from your example ```yaml # PubSub pubsub: image: google/cloud-sdk:emulators container_name: pubsub command: bash -c "gcloud beta...
This PR introduces two new environment variable configurations for the PubSub Emulator UI, making it more flexible for containerized deployments: 1. Auto-Attach Projects (`AUTO_ATTACH_PUBSUB_PROJECTS`) - Commit: 2e0ed4e - feat: Add...
After seeing the idea might be worth it in #38, decided to have a go myself. I opted for the querystring be set if you change it via the UI...