31 lines
1.0 KiB
Markdown
31 lines
1.0 KiB
Markdown
# GovOPlaN Wiki
|
|
|
|
<!-- govoplan-repository-type:start -->
|
|
**Repository type:** module (domain).
|
|
<!-- govoplan-repository-type:end -->
|
|
|
|
`govoplan-wiki` owns collaborative, revisioned knowledge pages and spaces.
|
|
It is the native GovOPlaN alternative and integration target for tools such as
|
|
MediaWiki and BlueSpice.
|
|
|
|
The runtime module ID is `wiki`. This initial scaffold registers the domain
|
|
boundary, permissions, roles, documentation, and module entry point. Runtime
|
|
storage and WebUI routes will follow as bounded implementation slices.
|
|
|
|
## Boundary
|
|
|
|
Wiki owns spaces, pages, revisions, links, labels, page-level access, and
|
|
publishing state. It does not own binary file storage, formal records, product
|
|
documentation, workflow execution, or general-purpose collaborative document
|
|
editing.
|
|
|
|
See [docs/WIKI_DOMAIN_BOUNDARY.md](docs/WIKI_DOMAIN_BOUNDARY.md).
|
|
|
|
## Development
|
|
|
|
```bash
|
|
cd /mnt/DATA/git/govoplan-wiki
|
|
PYTHONPATH=src:/mnt/DATA/git/govoplan-core/src \
|
|
/mnt/DATA/git/govoplan/.venv/bin/python -m unittest discover -s tests
|
|
```
|