chore: rename quicproquo → quicprochat in docs, Docker, CI, and packaging
Rename all project references from quicproquo/qpq to quicprochat/qpc across documentation, Docker configuration, CI workflows, packaging scripts, operational configs, and build tooling. - Docker: crate paths, binary names, user/group, data dirs, env vars - CI: workflow crate references, binary names, artifact names - Docs: all markdown files under docs/, SDK READMEs, book.toml - Packaging: OpenWrt Makefile, init script, UCI config (file renames) - Scripts: justfile, dev-shell, screenshot, cross-compile, ai_team - Operations: Prometheus config, alert rules, Grafana dashboard - Config: .env.example (QPQ_* → QPC_*), CODEOWNERS paths - Top-level: README, CONTRIBUTING, ROADMAP, CLAUDE.md
This commit is contained in:
@@ -75,13 +75,13 @@ You will need **three terminal windows**: one for the server, one for Alice, and
|
||||
In **Terminal 1** (Server):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-server
|
||||
cargo run -p quicprochat-server
|
||||
```
|
||||
|
||||
Wait for the log line confirming it is accepting connections:
|
||||
|
||||
```
|
||||
INFO quicproquo_server: accepting QUIC connections addr="0.0.0.0:7000"
|
||||
INFO quicprochat_server: accepting QUIC connections addr="0.0.0.0:7000"
|
||||
```
|
||||
|
||||
If this is the first run, you will also see a log line about generating the self-signed TLS certificate. The certificate is written to `data/server-cert.der`, which the client will use for TLS verification.
|
||||
@@ -91,7 +91,7 @@ If this is the first run, you will also see a log line about generating the self
|
||||
In **Terminal 2** (Alice):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- register-state \
|
||||
cargo run -p quicprochat-client -- register-state \
|
||||
--state alice.bin \
|
||||
--server 127.0.0.1:7000
|
||||
```
|
||||
@@ -116,7 +116,7 @@ KeyPackage uploaded successfully.
|
||||
In **Terminal 3** (Bob):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- register-state \
|
||||
cargo run -p quicprochat-client -- register-state \
|
||||
--state bob.bin \
|
||||
--server 127.0.0.1:7000
|
||||
```
|
||||
@@ -137,7 +137,7 @@ In **Terminal 2** (Alice):
|
||||
First, create the group:
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- create-group \
|
||||
cargo run -p quicprochat-client -- create-group \
|
||||
--state alice.bin \
|
||||
--group-id "demo-chat"
|
||||
```
|
||||
@@ -151,7 +151,7 @@ Alice is now the sole member of the group at epoch 0.
|
||||
Next, invite Bob using his identity key from Step 3:
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- invite \
|
||||
cargo run -p quicprochat-client -- invite \
|
||||
--state alice.bin \
|
||||
--peer-key <BOB_KEY> \
|
||||
--server 127.0.0.1:7000
|
||||
@@ -173,7 +173,7 @@ Alice's group state has now advanced to epoch 1.
|
||||
In **Terminal 3** (Bob):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- join \
|
||||
cargo run -p quicprochat-client -- join \
|
||||
--state bob.bin \
|
||||
--server 127.0.0.1:7000
|
||||
```
|
||||
@@ -195,7 +195,7 @@ Bob is now a member of the group at epoch 1, sharing the same group secret as Al
|
||||
In **Terminal 2** (Alice):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- send \
|
||||
cargo run -p quicprochat-client -- send \
|
||||
--state alice.bin \
|
||||
--peer-key <BOB_KEY> \
|
||||
--msg "Hello Bob, this is encrypted with MLS!" \
|
||||
@@ -215,7 +215,7 @@ message sent
|
||||
In **Terminal 3** (Bob):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- recv \
|
||||
cargo run -p quicprochat-client -- recv \
|
||||
--state bob.bin \
|
||||
--server 127.0.0.1:7000
|
||||
```
|
||||
@@ -233,7 +233,7 @@ This command:
|
||||
In **Terminal 3** (Bob):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- send \
|
||||
cargo run -p quicprochat-client -- send \
|
||||
--state bob.bin \
|
||||
--peer-key <ALICE_KEY> \
|
||||
--msg "Hi Alice, received loud and clear!" \
|
||||
@@ -249,7 +249,7 @@ message sent
|
||||
In **Terminal 2** (Alice):
|
||||
|
||||
```bash
|
||||
cargo run -p quicproquo-client -- recv \
|
||||
cargo run -p quicprochat-client -- recv \
|
||||
--state alice.bin \
|
||||
--server 127.0.0.1:7000
|
||||
```
|
||||
@@ -266,7 +266,7 @@ If you want to see the entire flow in a single command without managing three te
|
||||
|
||||
```bash
|
||||
# Ensure the server is running, then:
|
||||
cargo run -p quicproquo-client -- demo-group --server 127.0.0.1:7000
|
||||
cargo run -p quicprochat-client -- demo-group --server 127.0.0.1:7000
|
||||
```
|
||||
|
||||
```
|
||||
@@ -327,7 +327,7 @@ Ensure the client has access to the server's TLS certificate. By default, both s
|
||||
- [REPL Command Reference](repl-reference.md) -- complete list of 40+ slash commands
|
||||
- [Rich Messaging](rich-messaging.md) -- reactions, typing indicators, edit/delete
|
||||
- [File Transfer](file-transfer.md) -- chunked upload/download with SHA-256 verification
|
||||
- [Go SDK](go-sdk.md) -- build Go applications against the qpq server
|
||||
- [Go SDK](go-sdk.md) -- build Go applications against the qpc server
|
||||
- [TypeScript SDK & Browser Demo](typescript-sdk.md) -- WASM crypto in the browser
|
||||
- [Mesh Networking](mesh-networking.md) -- P2P, broadcast channels, store-and-forward
|
||||
- [MLS (RFC 9420)](../protocol-layers/mls.md) -- how the MLS group operations work
|
||||
|
||||
Reference in New Issue
Block a user