Sync wiki from project files
2438
Codex-Project-Index.md
Normal file
2438
Codex-Project-Index.md
Normal file
File diff suppressed because it is too large
Load Diff
200
Repo-README.md
Normal file
200
Repo-README.md
Normal file
@@ -0,0 +1,200 @@
|
||||
<!-- codex-wiki-sync:88e8d7866d854bb8bba120f1 -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/README.md`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
# GovOPlaN
|
||||
|
||||
<!-- govoplan-repository-type:start -->
|
||||
**Repository type:** system (meta).
|
||||
<!-- govoplan-repository-type:end -->
|
||||
|
||||
[](https://git.add-ideas.de/GovOPlaN/govoplan/actions?workflow=module-matrix.yml&actor=0&status=0)
|
||||
[](https://git.add-ideas.de/GovOPlaN/govoplan/actions?workflow=release-integration.yml&actor=0&status=0)
|
||||
[](https://git.add-ideas.de/GovOPlaN/govoplan/actions?workflow=dependency-audit.yml&actor=0&status=0)
|
||||
[](https://git.add-ideas.de/GovOPlaN/govoplan/actions?workflow=security-audit.yml&actor=0&status=0)
|
||||
|
||||
This is the GovOPlaN meta repository. It is the operator entry point for
|
||||
whole-product development, release orchestration, repository bootstrap, and
|
||||
system-level Docker composition.
|
||||
|
||||
It is not a runtime module. Runtime behavior belongs to `govoplan-core` and the
|
||||
installed modules/connectors discovered by core.
|
||||
|
||||
## Common Commands
|
||||
|
||||
Create the whole-product development virtualenv in this meta repository:
|
||||
|
||||
```sh
|
||||
python3 -m venv .venv
|
||||
./.venv/bin/python tools/repo/sync-python-environment.py --requirements requirements-dev.txt --python ./.venv/bin/python --upgrade-pip
|
||||
```
|
||||
|
||||
The meta venv is the default Python environment for launch, check, release, and
|
||||
Gitea tooling. `GOVOPLAN_VENV_ROOT` or `PYTHON` can override it for special
|
||||
cases.
|
||||
|
||||
Start the development stack through the meta repository:
|
||||
|
||||
```sh
|
||||
./tools/launch/launch-dev.sh
|
||||
```
|
||||
|
||||
Open the WebUI in a browser after launch only when explicitly requested:
|
||||
|
||||
```sh
|
||||
GOVOPLAN_OPEN_BROWSER=1 ./tools/launch/launch-dev.sh
|
||||
```
|
||||
|
||||
Start the shared development PostgreSQL service:
|
||||
|
||||
```sh
|
||||
./tools/launch/start-dev-postgres.sh
|
||||
```
|
||||
|
||||
Check which GovOPlaN repositories are present and dirty:
|
||||
|
||||
```sh
|
||||
./tools/repo/repo-status.sh
|
||||
```
|
||||
|
||||
Clone missing repositories listed in `repositories.json`:
|
||||
|
||||
```sh
|
||||
./tools/repo/bootstrap-repositories.py
|
||||
```
|
||||
|
||||
Update generated repository type notes in all READMEs:
|
||||
|
||||
```sh
|
||||
./tools/repo/update-repository-type-notes.py
|
||||
```
|
||||
|
||||
Regenerate the human-readable repository link index:
|
||||
|
||||
```sh
|
||||
./tools/repo/generate-repository-index.py
|
||||
```
|
||||
|
||||
Synchronize the Python environment after package metadata changes:
|
||||
|
||||
```sh
|
||||
./.venv/bin/python tools/repo/sync-python-environment.py --requirements requirements-dev.txt --python ./.venv/bin/python
|
||||
```
|
||||
|
||||
Run the static cross-repository module contract check:
|
||||
|
||||
```sh
|
||||
./tools/checks/check-contracts.sh
|
||||
```
|
||||
|
||||
Require backend, manifest, frontend, lockfile, and release-composition versions
|
||||
to agree before a release:
|
||||
|
||||
```sh
|
||||
./.venv/bin/python tools/checks/check-version-alignment.py --release-composition
|
||||
```
|
||||
|
||||
Generate the CycloneDX dependency inventory from a resolved release environment:
|
||||
|
||||
```sh
|
||||
./.venv/bin/python tools/release/generate-release-sbom.py --python ./.venv/bin/python
|
||||
```
|
||||
|
||||
For reproducible release artifacts, set `SOURCE_DATE_EPOCH` to the release
|
||||
commit timestamp (or pass an explicit timezone-qualified `--timestamp`):
|
||||
|
||||
```sh
|
||||
SOURCE_DATE_EPOCH="$(git -C ../govoplan-core show -s --format=%ct HEAD)" \
|
||||
./.venv/bin/python tools/release/generate-release-sbom.py --python ./.venv/bin/python
|
||||
```
|
||||
|
||||
Run the consolidated focused verification suite:
|
||||
|
||||
```sh
|
||||
./tools/checks/check-focused.sh
|
||||
```
|
||||
|
||||
Run the cross-repository dependency boundary gate:
|
||||
|
||||
```sh
|
||||
./tools/checks/check_dependency_boundaries.py
|
||||
```
|
||||
|
||||
Run installer rollback drills:
|
||||
|
||||
```sh
|
||||
./tools/checks/module-installer-rollback-drill.py --format json
|
||||
```
|
||||
|
||||
Release, catalog, Gitea, security-audit, and cross-repository maintenance
|
||||
commands should also be called from this repository through `tools/`.
|
||||
|
||||
Start the local release console:
|
||||
|
||||
```sh
|
||||
./.venv/bin/python tools/release/release-console.py
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
The repository root `.env.example` is the self-hosted operator template for a
|
||||
full GovOPlaN installation. Development profile examples live below `dev/`, for
|
||||
example `dev/postgres/.env.example` and `dev/production-like/.env.example`.
|
||||
|
||||
Do not commit populated `.env` files. Gitea tokens should stay in a local file
|
||||
such as `~/.config/gitea/gitea.env` and be passed with `--env-file`.
|
||||
|
||||
## Structure
|
||||
|
||||
The repository categories are documented in
|
||||
`docs/REPOSITORY_STRUCTURE.md`. The machine-readable list lives in
|
||||
`repositories.json`; the clickable human-readable index is
|
||||
`docs/REPOSITORY_INDEX.md`.
|
||||
|
||||
Meta ownership and module install/contract boundaries are documented in
|
||||
`docs/META_REPO_SCAN.md` and `docs/MODULE_CONTRACTS_AND_INSTALLS.md`.
|
||||
Frontend layout principles for module pages are documented in
|
||||
`docs/FRONTEND_LAYOUT_PRINCIPLES.md`.
|
||||
The provider-neutral datasource boundary and reusable Dataflow/Workflow graph
|
||||
contract are documented in
|
||||
`docs/DATASOURCE_AND_DEFINITION_GRAPH_ARCHITECTURE.md`.
|
||||
The cross-product destination, stakeholder visions, configuration archetypes,
|
||||
connected outcome stories, and capability horizons are documented in
|
||||
the [Connected Governance Platform Roadmap](docs/CONNECTED_GOVERNANCE_PLATFORM_ROADMAP.md).
|
||||
The selected Campaign-to-Postbox-to-data-to-collaboration implementation path,
|
||||
including stage gates and shared documentation expectations, is in the
|
||||
[Reference Journey Program](docs/REFERENCE_JOURNEY_PROGRAM.md).
|
||||
The administrator journey from Core-only bootstrap through online module
|
||||
installation, scale-out, and reversible environment promotion is defined in
|
||||
[System Administrator Lifecycle User Story](docs/SYSTEM_ADMINISTRATOR_LIFECYCLE_USER_STORY.md).
|
||||
The first Campaign-centric capability and infrastructure fit assessment is in
|
||||
`docs/CAPABILITY_AND_INFRASTRUCTURE_FIT.md`. Its rerun tooling can collect and
|
||||
verify a bounded installed composition; target, provider and production claims
|
||||
remain separate, expiring attestations signed by independently scoped proof
|
||||
authorities.
|
||||
|
||||
# GovOPlaN Docker
|
||||
|
||||
Whole-product Docker composition belongs in this meta repository.
|
||||
|
||||
Current module-specific Docker test beds remain in their owning repositories
|
||||
until they are migrated or wrapped here:
|
||||
|
||||
- `govoplan/dev/postgres`
|
||||
- `govoplan/dev/production-like`
|
||||
- `govoplan-campaign/dev/mail-testbed`
|
||||
- `govoplan-files/dev/connectors`
|
||||
|
||||
The target shape is:
|
||||
|
||||
- `govoplan/dev/postgres`: shared local development PostgreSQL service.
|
||||
- `govoplan/dev/production-like`: production-like validation composition.
|
||||
- module repositories keep only narrow connector or protocol test beds.
|
||||
|
||||
What doesn't belong here:
|
||||
|
||||
- `addideas-govoplan-website/docker-compose.yml`: public website serving
|
||||
profile; this one stays with the website repository.
|
||||
106
Repo-audit-reports-direct-quick-20260722-manifest.md
Normal file
106
Repo-audit-reports-direct-quick-20260722-manifest.md
Normal file
@@ -0,0 +1,106 @@
|
||||
<!-- codex-wiki-sync:305ebe71f348630c15fd2a1f -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/direct-quick-20260722/manifest.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
{
|
||||
"completed_at_utc": "2026-07-22T01:52:17Z",
|
||||
"execution_error_status": 0,
|
||||
"expected_reports": [
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"fail_on_findings": false,
|
||||
"finding_status": 0,
|
||||
"missing_reports": [],
|
||||
"missing_tool_status": 1,
|
||||
"mode": "quick",
|
||||
"overall_status": 0,
|
||||
"report_checksums": "report-sha256.txt",
|
||||
"reports": [
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"repositories": [
|
||||
"/mnt/DATA/git/govoplan",
|
||||
"/mnt/DATA/git/addideas-govoplan-website",
|
||||
"/mnt/DATA/git/govoplan-access",
|
||||
"/mnt/DATA/git/govoplan-addresses",
|
||||
"/mnt/DATA/git/govoplan-admin",
|
||||
"/mnt/DATA/git/govoplan-appointments",
|
||||
"/mnt/DATA/git/govoplan-approvals",
|
||||
"/mnt/DATA/git/govoplan-assets",
|
||||
"/mnt/DATA/git/govoplan-audit",
|
||||
"/mnt/DATA/git/govoplan-booking",
|
||||
"/mnt/DATA/git/govoplan-calendar",
|
||||
"/mnt/DATA/git/govoplan-campaign",
|
||||
"/mnt/DATA/git/govoplan-cases",
|
||||
"/mnt/DATA/git/govoplan-certificates",
|
||||
"/mnt/DATA/git/govoplan-committee",
|
||||
"/mnt/DATA/git/govoplan-connectors",
|
||||
"/mnt/DATA/git/govoplan-consultation",
|
||||
"/mnt/DATA/git/govoplan-contracts",
|
||||
"/mnt/DATA/git/govoplan-core",
|
||||
"/mnt/DATA/git/govoplan-dashboard",
|
||||
"/mnt/DATA/git/govoplan-dist-lists",
|
||||
"/mnt/DATA/git/govoplan-dms",
|
||||
"/mnt/DATA/git/govoplan-docs",
|
||||
"/mnt/DATA/git/govoplan-erp",
|
||||
"/mnt/DATA/git/govoplan-evaluation",
|
||||
"/mnt/DATA/git/govoplan-facilities",
|
||||
"/mnt/DATA/git/govoplan-files",
|
||||
"/mnt/DATA/git/govoplan-fit-connect",
|
||||
"/mnt/DATA/git/govoplan-forms",
|
||||
"/mnt/DATA/git/govoplan-forms-runtime",
|
||||
"/mnt/DATA/git/govoplan-grants",
|
||||
"/mnt/DATA/git/govoplan-helpdesk",
|
||||
"/mnt/DATA/git/govoplan-identity",
|
||||
"/mnt/DATA/git/govoplan-identity-trust",
|
||||
"/mnt/DATA/git/govoplan-idm",
|
||||
"/mnt/DATA/git/govoplan-inspections",
|
||||
"/mnt/DATA/git/govoplan-issue-reporting",
|
||||
"/mnt/DATA/git/govoplan-learning",
|
||||
"/mnt/DATA/git/govoplan-ledger",
|
||||
"/mnt/DATA/git/govoplan-mail",
|
||||
"/mnt/DATA/git/govoplan-notifications",
|
||||
"/mnt/DATA/git/govoplan-ops",
|
||||
"/mnt/DATA/git/govoplan-organizations",
|
||||
"/mnt/DATA/git/govoplan-payments",
|
||||
"/mnt/DATA/git/govoplan-permits",
|
||||
"/mnt/DATA/git/govoplan-policy",
|
||||
"/mnt/DATA/git/govoplan-poll",
|
||||
"/mnt/DATA/git/govoplan-portal",
|
||||
"/mnt/DATA/git/govoplan-postbox",
|
||||
"/mnt/DATA/git/govoplan-procurement",
|
||||
"/mnt/DATA/git/govoplan-records",
|
||||
"/mnt/DATA/git/govoplan-reporting",
|
||||
"/mnt/DATA/git/govoplan-resources",
|
||||
"/mnt/DATA/git/govoplan-rest",
|
||||
"/mnt/DATA/git/govoplan-risk-compliance",
|
||||
"/mnt/DATA/git/govoplan-scheduling",
|
||||
"/mnt/DATA/git/govoplan-search",
|
||||
"/mnt/DATA/git/govoplan-soap",
|
||||
"/mnt/DATA/git/govoplan-tasks",
|
||||
"/mnt/DATA/git/govoplan-templates",
|
||||
"/mnt/DATA/git/govoplan-tenancy",
|
||||
"/mnt/DATA/git/govoplan-transparency",
|
||||
"/mnt/DATA/git/govoplan-workflow",
|
||||
"/mnt/DATA/git/govoplan-xoev",
|
||||
"/mnt/DATA/git/govoplan-xrechnung",
|
||||
"/mnt/DATA/git/govoplan-xta-osci"
|
||||
],
|
||||
"scope": "govoplan",
|
||||
"started_at_utc": "2026-07-22T01:52:12Z",
|
||||
"step_status": "step-status.tsv",
|
||||
"tool_versions": "tool-versions.txt",
|
||||
"toolbox_fingerprint": "direct-host",
|
||||
"workspace_state_end": "workspace-state-end.tsv",
|
||||
"workspace_state_start": "workspace-state-start.tsv",
|
||||
"workspace_unchanged": true
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
<!-- codex-wiki-sync:524fc1b3dd6482b55b1ae7b4 -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/direct-quick-python-20260722-final/manifest.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
{
|
||||
"completed_at_utc": "2026-07-22T01:54:21Z",
|
||||
"execution_error_status": 0,
|
||||
"expected_reports": [
|
||||
"bandit-tests.json",
|
||||
"bandit.json",
|
||||
"ruff-security-tests.json",
|
||||
"ruff-security.json",
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"fail_on_findings": false,
|
||||
"finding_status": 0,
|
||||
"missing_reports": [],
|
||||
"missing_tool_status": 1,
|
||||
"mode": "quick",
|
||||
"overall_status": 0,
|
||||
"report_checksums": "report-sha256.txt",
|
||||
"reports": [
|
||||
"bandit-tests.json",
|
||||
"bandit.json",
|
||||
"ruff-security-tests.json",
|
||||
"ruff-security.json",
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"repositories": [
|
||||
"/mnt/DATA/git/govoplan",
|
||||
"/mnt/DATA/git/addideas-govoplan-website",
|
||||
"/mnt/DATA/git/govoplan-access",
|
||||
"/mnt/DATA/git/govoplan-addresses",
|
||||
"/mnt/DATA/git/govoplan-admin",
|
||||
"/mnt/DATA/git/govoplan-appointments",
|
||||
"/mnt/DATA/git/govoplan-approvals",
|
||||
"/mnt/DATA/git/govoplan-assets",
|
||||
"/mnt/DATA/git/govoplan-audit",
|
||||
"/mnt/DATA/git/govoplan-booking",
|
||||
"/mnt/DATA/git/govoplan-calendar",
|
||||
"/mnt/DATA/git/govoplan-campaign",
|
||||
"/mnt/DATA/git/govoplan-cases",
|
||||
"/mnt/DATA/git/govoplan-certificates",
|
||||
"/mnt/DATA/git/govoplan-committee",
|
||||
"/mnt/DATA/git/govoplan-connectors",
|
||||
"/mnt/DATA/git/govoplan-consultation",
|
||||
"/mnt/DATA/git/govoplan-contracts",
|
||||
"/mnt/DATA/git/govoplan-core",
|
||||
"/mnt/DATA/git/govoplan-dashboard",
|
||||
"/mnt/DATA/git/govoplan-dist-lists",
|
||||
"/mnt/DATA/git/govoplan-dms",
|
||||
"/mnt/DATA/git/govoplan-docs",
|
||||
"/mnt/DATA/git/govoplan-erp",
|
||||
"/mnt/DATA/git/govoplan-evaluation",
|
||||
"/mnt/DATA/git/govoplan-facilities",
|
||||
"/mnt/DATA/git/govoplan-files",
|
||||
"/mnt/DATA/git/govoplan-fit-connect",
|
||||
"/mnt/DATA/git/govoplan-forms",
|
||||
"/mnt/DATA/git/govoplan-forms-runtime",
|
||||
"/mnt/DATA/git/govoplan-grants",
|
||||
"/mnt/DATA/git/govoplan-helpdesk",
|
||||
"/mnt/DATA/git/govoplan-identity",
|
||||
"/mnt/DATA/git/govoplan-identity-trust",
|
||||
"/mnt/DATA/git/govoplan-idm",
|
||||
"/mnt/DATA/git/govoplan-inspections",
|
||||
"/mnt/DATA/git/govoplan-issue-reporting",
|
||||
"/mnt/DATA/git/govoplan-learning",
|
||||
"/mnt/DATA/git/govoplan-ledger",
|
||||
"/mnt/DATA/git/govoplan-mail",
|
||||
"/mnt/DATA/git/govoplan-notifications",
|
||||
"/mnt/DATA/git/govoplan-ops",
|
||||
"/mnt/DATA/git/govoplan-organizations",
|
||||
"/mnt/DATA/git/govoplan-payments",
|
||||
"/mnt/DATA/git/govoplan-permits",
|
||||
"/mnt/DATA/git/govoplan-policy",
|
||||
"/mnt/DATA/git/govoplan-poll",
|
||||
"/mnt/DATA/git/govoplan-portal",
|
||||
"/mnt/DATA/git/govoplan-postbox",
|
||||
"/mnt/DATA/git/govoplan-procurement",
|
||||
"/mnt/DATA/git/govoplan-records",
|
||||
"/mnt/DATA/git/govoplan-reporting",
|
||||
"/mnt/DATA/git/govoplan-resources",
|
||||
"/mnt/DATA/git/govoplan-rest",
|
||||
"/mnt/DATA/git/govoplan-risk-compliance",
|
||||
"/mnt/DATA/git/govoplan-scheduling",
|
||||
"/mnt/DATA/git/govoplan-search",
|
||||
"/mnt/DATA/git/govoplan-soap",
|
||||
"/mnt/DATA/git/govoplan-tasks",
|
||||
"/mnt/DATA/git/govoplan-templates",
|
||||
"/mnt/DATA/git/govoplan-tenancy",
|
||||
"/mnt/DATA/git/govoplan-transparency",
|
||||
"/mnt/DATA/git/govoplan-workflow",
|
||||
"/mnt/DATA/git/govoplan-xoev",
|
||||
"/mnt/DATA/git/govoplan-xrechnung",
|
||||
"/mnt/DATA/git/govoplan-xta-osci"
|
||||
],
|
||||
"scope": "govoplan",
|
||||
"started_at_utc": "2026-07-22T01:53:55Z",
|
||||
"step_status": "step-status.tsv",
|
||||
"tool_versions": "tool-versions.txt",
|
||||
"toolbox_fingerprint": "direct-host",
|
||||
"workspace_state_end": "workspace-state-end.tsv",
|
||||
"workspace_state_start": "workspace-state-start.tsv",
|
||||
"workspace_unchanged": true
|
||||
}
|
||||
114
Repo-audit-reports-direct-quick-python-20260722-manifest.md
Normal file
114
Repo-audit-reports-direct-quick-python-20260722-manifest.md
Normal file
@@ -0,0 +1,114 @@
|
||||
<!-- codex-wiki-sync:249dc7d5d198c40bfaed89fc -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/direct-quick-python-20260722/manifest.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
{
|
||||
"completed_at_utc": "2026-07-22T01:53:01Z",
|
||||
"execution_error_status": 0,
|
||||
"expected_reports": [
|
||||
"bandit-tests.json",
|
||||
"bandit.json",
|
||||
"ruff-security-tests.json",
|
||||
"ruff-security.json",
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"fail_on_findings": false,
|
||||
"finding_status": 1,
|
||||
"missing_reports": [],
|
||||
"missing_tool_status": 1,
|
||||
"mode": "quick",
|
||||
"overall_status": 0,
|
||||
"report_checksums": "report-sha256.txt",
|
||||
"reports": [
|
||||
"bandit-tests.json",
|
||||
"bandit.json",
|
||||
"ruff-security-tests.json",
|
||||
"ruff-security.json",
|
||||
"step-status.tsv",
|
||||
"tool-versions.txt",
|
||||
"workspace-state-end.tsv",
|
||||
"workspace-state-start.tsv"
|
||||
],
|
||||
"repositories": [
|
||||
"/mnt/DATA/git/govoplan",
|
||||
"/mnt/DATA/git/addideas-govoplan-website",
|
||||
"/mnt/DATA/git/govoplan-access",
|
||||
"/mnt/DATA/git/govoplan-addresses",
|
||||
"/mnt/DATA/git/govoplan-admin",
|
||||
"/mnt/DATA/git/govoplan-appointments",
|
||||
"/mnt/DATA/git/govoplan-approvals",
|
||||
"/mnt/DATA/git/govoplan-assets",
|
||||
"/mnt/DATA/git/govoplan-audit",
|
||||
"/mnt/DATA/git/govoplan-booking",
|
||||
"/mnt/DATA/git/govoplan-calendar",
|
||||
"/mnt/DATA/git/govoplan-campaign",
|
||||
"/mnt/DATA/git/govoplan-cases",
|
||||
"/mnt/DATA/git/govoplan-certificates",
|
||||
"/mnt/DATA/git/govoplan-committee",
|
||||
"/mnt/DATA/git/govoplan-connectors",
|
||||
"/mnt/DATA/git/govoplan-consultation",
|
||||
"/mnt/DATA/git/govoplan-contracts",
|
||||
"/mnt/DATA/git/govoplan-core",
|
||||
"/mnt/DATA/git/govoplan-dashboard",
|
||||
"/mnt/DATA/git/govoplan-dist-lists",
|
||||
"/mnt/DATA/git/govoplan-dms",
|
||||
"/mnt/DATA/git/govoplan-docs",
|
||||
"/mnt/DATA/git/govoplan-erp",
|
||||
"/mnt/DATA/git/govoplan-evaluation",
|
||||
"/mnt/DATA/git/govoplan-facilities",
|
||||
"/mnt/DATA/git/govoplan-files",
|
||||
"/mnt/DATA/git/govoplan-fit-connect",
|
||||
"/mnt/DATA/git/govoplan-forms",
|
||||
"/mnt/DATA/git/govoplan-forms-runtime",
|
||||
"/mnt/DATA/git/govoplan-grants",
|
||||
"/mnt/DATA/git/govoplan-helpdesk",
|
||||
"/mnt/DATA/git/govoplan-identity",
|
||||
"/mnt/DATA/git/govoplan-identity-trust",
|
||||
"/mnt/DATA/git/govoplan-idm",
|
||||
"/mnt/DATA/git/govoplan-inspections",
|
||||
"/mnt/DATA/git/govoplan-issue-reporting",
|
||||
"/mnt/DATA/git/govoplan-learning",
|
||||
"/mnt/DATA/git/govoplan-ledger",
|
||||
"/mnt/DATA/git/govoplan-mail",
|
||||
"/mnt/DATA/git/govoplan-notifications",
|
||||
"/mnt/DATA/git/govoplan-ops",
|
||||
"/mnt/DATA/git/govoplan-organizations",
|
||||
"/mnt/DATA/git/govoplan-payments",
|
||||
"/mnt/DATA/git/govoplan-permits",
|
||||
"/mnt/DATA/git/govoplan-policy",
|
||||
"/mnt/DATA/git/govoplan-poll",
|
||||
"/mnt/DATA/git/govoplan-portal",
|
||||
"/mnt/DATA/git/govoplan-postbox",
|
||||
"/mnt/DATA/git/govoplan-procurement",
|
||||
"/mnt/DATA/git/govoplan-records",
|
||||
"/mnt/DATA/git/govoplan-reporting",
|
||||
"/mnt/DATA/git/govoplan-resources",
|
||||
"/mnt/DATA/git/govoplan-rest",
|
||||
"/mnt/DATA/git/govoplan-risk-compliance",
|
||||
"/mnt/DATA/git/govoplan-scheduling",
|
||||
"/mnt/DATA/git/govoplan-search",
|
||||
"/mnt/DATA/git/govoplan-soap",
|
||||
"/mnt/DATA/git/govoplan-tasks",
|
||||
"/mnt/DATA/git/govoplan-templates",
|
||||
"/mnt/DATA/git/govoplan-tenancy",
|
||||
"/mnt/DATA/git/govoplan-transparency",
|
||||
"/mnt/DATA/git/govoplan-workflow",
|
||||
"/mnt/DATA/git/govoplan-xoev",
|
||||
"/mnt/DATA/git/govoplan-xrechnung",
|
||||
"/mnt/DATA/git/govoplan-xta-osci"
|
||||
],
|
||||
"scope": "govoplan",
|
||||
"started_at_utc": "2026-07-22T01:52:34Z",
|
||||
"step_status": "step-status.tsv",
|
||||
"tool_versions": "tool-versions.txt",
|
||||
"toolbox_fingerprint": "direct-host",
|
||||
"workspace_state_end": "workspace-state-end.tsv",
|
||||
"workspace_state_start": "workspace-state-start.tsv",
|
||||
"workspace_unchanged": true
|
||||
}
|
||||
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-addideas-govoplan-website.md
Normal file
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-addideas-govoplan-website.md
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-addideas-govoplan-website.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-access.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-addresses.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-admin.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-appointments.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-approvals.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-assets.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-audit.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-booking.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-calendar.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-campaign.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-cases.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-certificates.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-committee.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-connectors.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-consultation.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-contracts.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-core.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-dashboard.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-dist-lists.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-dms.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-docs.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-erp.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-evaluation.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-facilities.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-files.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-fit-connect.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-forms-runtime.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-forms.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-grants.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-helpdesk.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-identity-trust.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-identity.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-idm.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-inspections.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-govoplan-issue-reporting.md
Normal file
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-govoplan-issue-reporting.md
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-issue-reporting.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-learning.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-ledger.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-mail.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-notifications.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-ops.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-organizations.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-payments.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-permits.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-policy.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-poll.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-portal.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-postbox.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-procurement.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-records.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-reporting.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-resources.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-rest.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-govoplan-risk-compliance.md
Normal file
8
Repo-audit-reports-full-20260721T-current-gitleaks-history-govoplan-risk-compliance.md
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-risk-compliance.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-scheduling.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-search.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-soap.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-tasks.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-templates.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-tenancy.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-transparency.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-workflow.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-xoev.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-xrechnung.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan-xta-osci.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-history-govoplan.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
8
Repo-audit-reports-full-20260721T-current-gitleaks-worktree-addideas-govoplan-website.md
Normal file
8
Repo-audit-reports-full-20260721T-current-gitleaks-worktree-addideas-govoplan-website.md
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-addideas-govoplan-website.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-access.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-addresses.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-admin.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-appointments.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-approvals.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-assets.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-audit.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-booking.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-calendar.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-campaign.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-cases.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-certificates.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-committee.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-connectors.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-consultation.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-contracts.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-core.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-dashboard.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-dist-lists.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-dms.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-docs.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-erp.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-evaluation.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-facilities.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-files.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-fit-connect.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-forms-runtime.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
@@ -0,0 +1,8 @@
|
||||
<!-- codex-wiki-sync:37517e5f3dc66819f61f5a7b -->
|
||||
|
||||
> Mirrored from `/mnt/DATA/git/govoplan/audit-reports/full-20260721T-current/gitleaks-worktree-govoplan-forms.json`.
|
||||
> Origin: `repository`.
|
||||
> Active tasks and changing state belong in Gitea issues; this wiki page is durable project context.
|
||||
|
||||
---
|
||||
[]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user