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
50 lines
784 B
Makefile
50 lines
784 B
Makefile
# quicprochat v2 — build commands
|
|
|
|
# Default: build all workspace crates
|
|
build:
|
|
cargo build --workspace
|
|
|
|
# Run all tests
|
|
test:
|
|
cargo test --workspace
|
|
|
|
# Run core crypto tests only
|
|
test-core:
|
|
cargo test -p quicprochat-core
|
|
|
|
# Build proto crate (triggers prost codegen)
|
|
proto:
|
|
cargo build -p quicprochat-proto
|
|
|
|
# Build RPC framework
|
|
rpc:
|
|
cargo build -p quicprochat-rpc
|
|
|
|
# Build SDK
|
|
sdk:
|
|
cargo build -p quicprochat-sdk
|
|
|
|
# Build server
|
|
server:
|
|
cargo build -p quicprochat-server
|
|
|
|
# Build client
|
|
client:
|
|
cargo build -p quicprochat-client
|
|
|
|
# Check all with clippy
|
|
lint:
|
|
cargo clippy --workspace -- -D warnings
|
|
|
|
# Format check
|
|
fmt:
|
|
cargo fmt --all -- --check
|
|
|
|
# Format fix
|
|
fmt-fix:
|
|
cargo fmt --all
|
|
|
|
# Clean build artifacts
|
|
clean:
|
|
cargo clean
|