{"id":37226022,"url":"https://github.com/beeper/dummybridge","last_synced_at":"2026-01-15T01:52:02.536Z","repository":{"id":134312601,"uuid":"526669632","full_name":"beeper/dummybridge","owner":"beeper","description":"A Matrix bridge that generates dummy data","archived":false,"fork":false,"pushed_at":"2025-11-25T09:53:16.000Z","size":164,"stargazers_count":9,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-28T16:18:52.133Z","etag":null,"topics":["bridge","dummy-data","matrix","python"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beeper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-19T16:01:24.000Z","updated_at":"2025-11-25T09:53:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"68b8160b-489f-44bb-815f-b38c1842129b","html_url":"https://github.com/beeper/dummybridge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beeper/dummybridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeper%2Fdummybridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeper%2Fdummybridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeper%2Fdummybridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeper%2Fdummybridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beeper","download_url":"https://codeload.github.com/beeper/dummybridge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeper%2Fdummybridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28441031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"ssl_error","status_checked_at":"2026-01-15T00:55:20.945Z","response_time":107,"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":["bridge","dummy-data","matrix","python"],"created_at":"2026-01-15T01:52:01.985Z","updated_at":"2026-01-15T01:52:02.520Z","avatar_url":"https://github.com/beeper.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DummyBridge\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/beeper/dummybridge.svg)](https://pkg.go.dev/github.com/beeper/dummybridge)\n[![Go Report Card](https://goreportcard.com/badge/github.com/beeper/dummybridge)](https://goreportcard.com/report/github.com/beeper/dummybridge)\n[![Build Docker](https://github.com/beeper/dummybridge/actions/workflows/docker.yaml/badge.svg?branch=main)](https://github.com/beeper/dummybridge/actions/workflows/docker.yaml)\n\nDummyBridge is a Go-based bridge designed for testing purposes. It provides an echo bridge\nfunctionality and supports various login flows, including password, cookies, local storage,\nand display-and-wait.\n\n## Features\n\n- **Echo Bridge Functionality**: Acts as a simple echo bridge for testing.\n- **Login Flows**: Supports multiple login flows such as password, cookies, local storage,\n  and display-and-wait.\n- **Automation**: Configurable automation options for management rooms, login, portals,\n  and backfill.\n\n## Docker Images\n\nTo install Docker, refer to the [Docker Engine install guide](https://docs.docker.com/engine/install/).\n\nThe DummyBridge project provides several Docker images:\n\n- `ghcr.io/beeper/dummybridge:latest`: The main DummyBridge application.\n- `ghcr.io/beeper/dummybridge/loginhelper:latest`: A helper service for managing login flows.\n- `ghcr.io/beeper/dummybridge/go:latest`: A base image for Go applications.\n\nTo pull the latest version of the image, use the following:\n\n```sh\ndocker pull ghcr.io/beeper/dummybridge:latest\n```\n\n## Configuration\n\nDummyBridge can be configured using a YAML file. Below is an example configuration:\n\n```yaml\nautomation:\n  open_management_room: false # Open a management room for admins.\n  login: false # Automatically log in admins.\n  portals:\n    count: 0 # Number of portals to create during startup.\n    members: 0 # Number of members initially in each portal.\n    messages: 0 # Number of messages initially sent to each portal.\n  backfill:\n    timelimit: 0s # Duration for the initial startup infinite backfill, e.g. 10s, 1m, 1h\n```\n\n## Running\n\nTo run DummyBridge using Docker, execute the following command:\n\n```sh\ndocker run -d --name dummybridge -v /path/to/config.yaml:/etc/dummybridge/config.yaml ghcr.io/beeper/dummybridge:latest\n```\n\nReplace `/path/to/config.yaml` with the path to your configuration file.\n\n## Login Flows\n\nOnce DummyBridge is launched, you can interact with it using various login flows:\n\n1. **Password Login**:\n   - Navigate to the login page and enter any username and password.\n     These credentials are used as the ID.\n\n2. **Cookies Login**:\n   - Visit the `/pages/cookies.html` page and enter your username and password.\n     These will be saved as cookies.\n\n3. **Local Storage Login**:\n   - Visit the `/pages/localstorage.html` page and enter your username and password.\n     These will be saved in local storage.\n\n4. **Display and Wait Login**:\n   - A code will be generated, which you need to enter on the `/pages/daw_submit.html` page.\n\nDummyBridge supports several commands for testing purposes, such as creating new rooms,\ngenerating ghosts, and sending messages. These commands can be executed within the bridge's\nmanagement room.\n\n## License\n\nThis project currently does not have a published license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeper%2Fdummybridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeeper%2Fdummybridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeper%2Fdummybridge/lists"}