readme: update with new code paths

This commit is contained in:
Alex Zenla 2024-03-08 05:40:43 +00:00
parent 277c57a938
commit 184ccfbd53
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -42,12 +42,12 @@ Edera is building a company to compete in the hypervisor space with open-source
krata is composed of three major executables:
| Executable | Runs On | User Interaction | Dev Runner | Code Path |
| ---------- | ------- | ---------------- | ------------------------ | ----------- |
| kratad | host | backend daemon | ./hack/debug/kratad.sh | daemon |
| kratanet | host | backend daemon | ./hack/debug/kratanet.sh | network |
| kratactl | host | CLI tool | ./hack/debug/kratactl.sh | controller |
| krataguest | guest | none, guest init | N/A | guest |
| Executable | Runs On | User Interaction | Dev Runner | Code Path |
| ---------- | ------- | ---------------- | ------------------------ | ----------------- |
| kratad | host | backend daemon | ./hack/debug/kratad.sh | crates/kratad |
| kratanet | host | backend daemon | ./hack/debug/kratanet.sh | crates/kratanet |
| kratactl | host | CLI tool | ./hack/debug/kratactl.sh | crates/kratactl |
| krataguest | guest | none, guest init | N/A | crates/krataguest |
You will find the code to each executable available in the bin/ and src/ directories inside
it's corresponding code path from the above table.