This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Template component descriptions * Add component descriptions directory with template descriptions * Install descriptions directory in CMakeLists.txt * Update script to rename template descriptions * Revise base URI of schema files * Update README * Fix typo in example description
- Loading branch information
Showing
18 changed files
with
76 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
source/template_component_package/component_descriptions/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Component Descriptions | ||
|
||
Each registered component should have a corresponding json description file in this directory, | ||
formatted according to the component description schema. | ||
|
||
More info: https://github.com/aica-technology/component-sdk/tree/main/schema |
9 changes: 9 additions & 0 deletions
9
...te_component_package/component_descriptions/template_component_package_cpp_component.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Template CPP Component", | ||
"description": { | ||
"brief": "Brief description of the component", | ||
"details": "Detailed description of the component." | ||
}, | ||
"registration": "template_component_package::CPPComponent", | ||
"inherits": "modulo_components::Component" | ||
} |
9 changes: 9 additions & 0 deletions
9
...nt_package/component_descriptions/template_component_package_cpp_lifecycle_component.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Template CPP Lifecycle Component", | ||
"description": { | ||
"brief": "Brief description of the component", | ||
"details": "Detailed description of the component." | ||
}, | ||
"registration": "template_component_package::CPPLifecycleComponent", | ||
"inherits": "modulo_components::LifecycleComponent" | ||
} |
9 changes: 9 additions & 0 deletions
9
...ate_component_package/component_descriptions/template_component_package_py_component.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Template Python Component", | ||
"description": { | ||
"brief": "Brief description of the component", | ||
"details": "Detailed description of the component." | ||
}, | ||
"registration": "template_component_package::PyComponent", | ||
"inherits": "modulo_components::Component" | ||
} |
9 changes: 9 additions & 0 deletions
9
...ent_package/component_descriptions/template_component_package_py_lifecycle_component.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Template Python Lifecycle Component", | ||
"description": { | ||
"brief": "Brief description of the component", | ||
"details": "Detailed description of the component." | ||
}, | ||
"registration": "template_component_package::PyLifecycleComponent", | ||
"inherits": "modulo_components::LifecycleComponent" | ||
} |