rpm-ostree/docs/repo_structure.md
2021-05-07 16:12:45 +02:00

72 lines
1.6 KiB
Markdown

---
nav_order: 9
---
# Repository structure
{: .no_toc }
1. TOC
{:toc}
## Rpm-ostree source code
```
.
└─ src
├── app rpm-ostree CLI application
├── daemon rpm-ostree daemon providing D-Bus API
├── lib Public library: contains APIs for exploring rpmdb in OSTrees
└── libpriv Private API shared between app and daemon
```
## Rust Libraries
```
.
└─ rust Contains rust libraries that rpm-ostree uses─
```
## CI
```
.
├── ci Contains scripts to install build dependencies and run tests locally
└── .cci.jenkinsfile Configuration to run CoreOS Jenkins CI
```
## tests
```
.
└── tests Contains tests
```
## Documentation
```
.
├── docs Contains documentation for this repository
├── HACKING.md Contains hacking information for developers
└── man Contains man page for rpm-ostree
```
## Makefiles
These files are used when doing raw build instructions. You can find more info [here](https://github.com/projectatomic/rpm-ostree/blob/main/HACKING.md#raw-build-instructions):
```
.
├── Makefile-daemon.am
├── Makefile-decls.am
├── Makefile-lib-defines.am
├── Makefile-lib.am
├── Makefile-libpriv.am
├── Makefile-libdnf.am
├── Makefile-man.am
├── Makefile-tests.am
├── Makefile.am
├── Makefile-rpm-ostree.am
├── configure.ac
└── autogen.sh
```