:
Last modified: May 12, 2023

Data Structure for Repos

Struktur for repositories og filer i Gitea.

Under arbeid… Her må det gjøres en større opprydding i filstrukturen.

Overordnet struktur

Gitea
├── altinn
│ ├── common
│ │ ├── text …
│ │ └── widgets …
│ │ └── README.md
│ ├── codelists
│ │ ├── countries.json
│ │ └──
│ │ └── README.md
│ └──

├── org-x
│ ├── org-x
│ │ ├── settings.json
│ │ ├── text …
│ │ ├── models …
│ │ └── widgets …
│ │
│ ├── codelists
│ │ ├── kodeliste1.json
│ │ └──
│ │
│ ├── tjeneste-1
│ │ ├── Deployment (helm)
│ │ │ ├── templates
│ │ │ │ ├── _helpers.tpl
│ │ │ │ ├── deployment.yaml
│ │ │ │ ├── ingress.yaml
│ │ │ │ ├── NOTES
│ │ │ │ └── service.yaml
│ │ │ ├── .helmignore
│ │ │ ├── Chart.yaml
│ │ │ └── values.yaml
│ │ ├── Implementation
│ │ │ ├── Calculation
│ │ │ │ └── CalculationHandler.cs
│ │ │ ├── InstantiationHandler.cs
│ │ │ ├── ServiceImplementation.cs
│ │ │ └── ValidationHandler.cs
│ │ ├── Metadata
│ │ │ ├── applicationmetadata.json
│ │ │ ├── ServiceMetadata.json
│ │ │ └── workflow.json
│ │ ├── Model
│ │ │ ├── ServiceModel.xsd
│ │ │ └── ServiceModel.cs
│ │ ├── Resources
│ │ │ ├── Dynamics
│ │ │ │ └── RuleHandler.js
│ │ │ ├── Styles.json
│ │ │ ├── react-app.css
│ │ │ ├── react-app.js
│ │ │ ├── FormLayout.json
│ │ │ ├── ServiceConfigurations.json
│ │ │ ├── resource.nb-NO.json
│ │ │ └── resource.nn-NO.json
│ │ ├── Test (used for runtime)
│ │ ├── Testdataforparty (used for runtime)
│ │ │ ├── user1
│ │ │ │ ├── instance1
│ │ │ │ │ ├── instance1.json
│ │ │ │ │ ├── instance1.state.json
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── data-id1
│ │ │ │ │ │ │ ├── data-id1.xml
│ │ │ │ │ │ ├── data-id…
│ │ ├── Workflow
│ │ │ └── workflow.bpmn (BPMN)
│ │ ├── App.csproj
│ │ ├── config.json
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ └── README.md
│ │
│ └── tjeneste-2 …

├── org-y
│ ├── org-y …
│ └──

├── bruker-a
│ └── tjeneste-1 (fork av org-x/tjeneste-1)
├── bruker-b …

├── Alle organisasjoner
├── Alle repos
└── Alle brukere