You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: core/core-runtimes/core-runtime-camel/src/main/java/ai/wanaku/core/runtime/camel/DefaultResourceConsumer.java
Copy file name to clipboardexpand all lines: docs/contributing.md
+27-5
Original file line number
Diff line number
Diff line change
@@ -17,12 +17,26 @@ Here are some examples:
17
17
18
18
**NOTE**: this is a generic explanation and the distinction may be specific to the problem domain. Therefore, there may be cases where this doesn't apply.
19
19
20
+
### Service types
21
+
22
+
You can create services using [Apache Camel](https://camel.apache.org) or plain [Quarkus](https://quarkus.io). To do so, just
23
+
provide the desired type when creating the project (i.e.; via `--type=quarkus` when using `wanaku` or `-Dwanaku-service-type` when
24
+
using the Maven archetype).
25
+
20
26
## Creating New Tools
21
27
22
-
To create a new tool for Wanaku, you can start by creating a new project. For instance, to create one for Kafka:
28
+
To create a new tool for Wanaku, you can start by creating a new project.
29
+
30
+
For instance, to create one for Kafka:
31
+
32
+
```shell
33
+
wanaku services create tool --name kafka
34
+
```
35
+
36
+
Alternatively, if you don't have the CLI instanced, you can do so using Maven:
0 commit comments