Compare commits

...

2 Commits

Author SHA1 Message Date
Bevan Hunt 08d53f62f6 add demo 2020-02-11 09:09:19 -08:00
Bevan Hunt 00bf925180 update prod link 2020-02-11 08:52:08 -08:00
4 changed files with 7 additions and 3 deletions

2
Cargo.lock generated
View File

@ -121,7 +121,7 @@ dependencies = [
[[package]]
name = "broker"
version = "4.3.1"
version = "4.3.2"
dependencies = [
"Inflector 0.11.4 (registry+https://github.com/rust-lang/crates.io-index)",
"bcrypt 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "broker"
version = "4.3.1"
version = "4.3.2"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
edition = "2018"
license = "MIT"

View File

@ -28,6 +28,10 @@ Broker follows an insert-only/publish/subscribe paradigm rather than a REST CRUD
* Event log via GET request
* Event cancellation via GET request
### Demo
[Demo](https://broker.apibill.me/)
### How it works
In Broker you create a user, login, then insert an event with its data, a collection_id, and a timestamp. Broker publishes the event when the timestamp is reached to the event stream via SSE. Broker keeps all events its database that can be viewed in collections (by collection_id). Broker can also cancel future events.

View File

@ -1,3 +1,3 @@
REACT_APP_API=https://broker-demo-api.apibill.me
REACT_APP_API=https://demo-api.apibill.me
REACT_APP_PASSWORD=password
REACT_APP_USERNAME=user