18 lines
448 B
Markdown
18 lines
448 B
Markdown
|
|
# __PROJECT_NAME__
|
||
|
|
|
||
|
|
Two-process chat demo: Alice and Bob talk via the Shade SDK over a simple
|
||
|
|
HTTP relay. Shows how easy it is to add E2EE to any transport.
|
||
|
|
|
||
|
|
## Run
|
||
|
|
|
||
|
|
Start a prekey server first (e.g. `docker run -p 3900:3900 shade-prekey-server`).
|
||
|
|
|
||
|
|
Then in two terminals:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
bun run bob # starts Bob's process on :4001
|
||
|
|
bun run alice # starts Alice's process on :4000
|
||
|
|
```
|
||
|
|
|
||
|
|
Alice will send a message to Bob; both will print the activity.
|