Data Structure for Repos
Struktur for repositories og filer i Gitea.
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
│ │ │ ├──
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
- App.csproj
Description for App.csproj file.
- applicationmetadata.json
Description of format for application metadata.
- FormLayout.json
Beskrivelse av format for skjema-layout
- InstansiationHandler.cs
Beskrivelse av format for InstansiationHandler.
- react-app.js
Beskrivelse av React-App.js
- RuleHandler.js
Beskrivelse av format for rule handler js filen.
- ServiceConfigurations.json
Beskrivelse av format for tjeneste konfigurasjons filen.
- ServiceImplementation.cs
Beskrivelse av format for tjenesteimplementasjonen.
- ServiceMetadata.json
Beskrivelse av format for ServiceMetadata.
- ServiceModel.cs
Beskrivelse av ServiceModel.cs.
- ServiceModel.xsd
Beskrivelse av ServiceModel.xsd.
- ValidationHandler.cs
Beskrivelse av format for ValidationHandler.