generated from coulomb/repo-seed
- Review integration files; fill SCOPE where templated - Document dev workflow in stack-and-commands.md - Seed WP-0002 implementation workplan; mark bootstrap finished - Hub sync via fix-consistency
21 lines
369 B
Markdown
21 lines
369 B
Markdown
## Stack
|
|
|
|
- **Language:** Python 3.11+
|
|
- **Key deps:** stdlib + pytest (see `pyproject.toml`)
|
|
|
|
## Dev Commands
|
|
|
|
```bash
|
|
# Install (editable)
|
|
pip install -e ".[dev]" # or: python3 -m pip install pytest
|
|
|
|
# Run tests
|
|
make test
|
|
python3 -m pytest -q
|
|
|
|
# Mock audit backend smoke / cleanup
|
|
make mock-audit-smoke
|
|
make mock-audit-cleanup
|
|
python3 -m audit_core emit --help
|
|
```
|