You've already forked generic-industrial-process
Import UAPF package
Some checks failed
Validate OIPF Library / validate-yaml (push) Has been cancelled
39 lines
935 B
Markdown
39 lines
935 B
Markdown
# Publishing to ProcessGit
|
|
|
|
Target URL:
|
|
|
|
```text
|
|
https://processgit.org/OIPF/generic-industrial-process
|
|
```
|
|
|
|
## Steps
|
|
|
|
1. Create organisation `OIPF` in ProcessGit if it does not already exist.
|
|
2. Create a new processpository named `generic-industrial-process`.
|
|
3. Set recommended metadata:
|
|
|
|
```yaml
|
|
repo_type: process
|
|
uapf_level: 0-4
|
|
status: draft
|
|
```
|
|
|
|
4. Push this repository content:
|
|
|
|
```bash
|
|
git clone https://processgit.org/OIPF/generic-industrial-process.git
|
|
cd generic-industrial-process
|
|
# copy files from this package into the repo root
|
|
git add .
|
|
git commit -m "Initial OIPF generic industrial process library"
|
|
git push origin main
|
|
```
|
|
|
|
5. Verify ProcessGit viewers:
|
|
|
|
- README markdown view;
|
|
- BPMN view: `bpmn/generic-industrial-process.bpmn`;
|
|
- DMN view: `dmn/action-readiness-decision.dmn`;
|
|
- YAML/package view: `packages/cleaning-optimisation/package.yaml`;
|
|
- JSON schema view: `resources/schemas/oipf-package.schema.json`.
|