This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new e01dde3  VSCode extension preview (#32)
e01dde3 is described below

commit e01dde331834a0a1fa6401a6355b2a0d6e655bed
Author: Marat Gubaidullin <[email protected]>
AuthorDate: Mon Oct 25 12:33:46 2021 -0400

    VSCode extension preview (#32)
---
 README.md                                          |   4 +-
 karavan-vscode/README.md                           |  48 +++++++++++++++++++++
 karavan-vscode/package.json                        |   9 ++--
 screenshots/create.png                             | Bin 0 -> 139042 bytes
 .../karavan-vscode.png                             | Bin
 karavan.png => screenshots/karavan.png             | Bin
 screenshots/open.png                               | Bin 0 -> 159033 bytes
 7 files changed, 55 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 1cbeeab..d3adbf3 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,10 @@
 Integration Designer for Apache Camel
 
 ### VS Code extension
-![karavan-vscode](karavan-vscode.png)
+![karavan-vscode](screenshots/karavan-vscode.png)
 
 ### Standalone application
-![karavan](karavan.png)
+![karavan](screenshots/karavan.png)
 
 ## Project structure
 1. Karavan-generator  
diff --git a/karavan-vscode/README.md b/karavan-vscode/README.md
new file mode 100644
index 0000000..9b15346
--- /dev/null
+++ b/karavan-vscode/README.md
@@ -0,0 +1,48 @@
+![License](https://img.shields.io/badge/License-Apache-blue.svg?style=for-the-badge&logo=apache)
+
+# Integration Designer for Apache Camel
+
+
+**Integration Designer for Apache Camel** makes integration easy and fun 
through visualization of integration pipeline.
+
+![karavan-vscode](../screenshots/karavan-vscode.png)
+
+## Features
+
+* Read/Write Integration resources (*.yaml with kind:Integration)
+* Kamelets source/sink/action
+* Enterprise Integration Patterns DSL (partial)
+* Components consumer/producer (experimental)
+
+## Prerequisites
+
+* Apache Camel K installed. See the Apache Camel K installation page for 
details: 
(https://camel.apache.org/camel-k/latest/installation/installation.html).
+* Openshift or Kubernetes CLI
+* Microsoft VS Code installed. You can get the most recent version from 
(https://code.visualstudio.com/) for your chosen operating system.
+
+## How to install
+
+1. Open your VS Code Integrated Development Environment (IDE).
+2. In the VS Code Activity Bar, select Extensions. (Alternately, press 
Ctrl+Shift+X).
+3. In the search bar, type **Camel Karavan**
+4. In the **Apache Camel Karavan** box, click **Install**.
+
+## How to 
+
+### Create new Integration
+
+![create](../screenshots/create.png)
+
+### Edit an existing Integration
+
+![open](../screenshots/open.png)
+
+### Deploy
+
+```shell
+oc apply -f integration.yaml
+```
+
+## Issues
+
+If you find a new issue, please [create a new issue report in 
GitHub](https://github.com/apache/camel-karavan/issues)!
\ No newline at end of file
diff --git a/karavan-vscode/package.json b/karavan-vscode/package.json
index 788ad02..e6adbde 100644
--- a/karavan-vscode/package.json
+++ b/karavan-vscode/package.json
@@ -1,13 +1,14 @@
 {
-  "name": "camel-karavan",
+  "name": "karavan",
   "publisher": "camel-karavan",
   "displayName": "Camel Karavan Designer",
   "icon": "icons/icon.png",
   "description": "Integration Designer for Apache Camel",
   "version": "0.0.1",
   "license": "Apache-2.0",
+  "preview": true,
   "bugs": {
-    "url": "https://github.com/camel/camel-karavan/issues";
+    "url": "https://github.com/apache/camel-karavan/issues";
   },
   "author": {
     "name": "Marat Gubaidullin",
@@ -21,7 +22,7 @@
        ],
   "repository": {
     "type": "git",
-    "url": "https://github.com/camel/camel-karavan";
+    "url": "https://github.com/apache/camel-karavan";
   },
   "engines": {
     "vscode": "^1.56.0"
@@ -29,7 +30,7 @@
   "categories": [
     "Other"
   ],
-  "homepage": "https://github.com/camel/camel-karavan";,
+  "homepage": 
"https://github.com/apache/camel-karavan/karavan-vscode/README.md";,
   "keywords": [
     "Camel",
                "Camel K",
diff --git a/screenshots/create.png b/screenshots/create.png
new file mode 100644
index 0000000..b28e766
Binary files /dev/null and b/screenshots/create.png differ
diff --git a/karavan-vscode.png b/screenshots/karavan-vscode.png
similarity index 100%
rename from karavan-vscode.png
rename to screenshots/karavan-vscode.png
diff --git a/karavan.png b/screenshots/karavan.png
similarity index 100%
rename from karavan.png
rename to screenshots/karavan.png
diff --git a/screenshots/open.png b/screenshots/open.png
new file mode 100644
index 0000000..747f38d
Binary files /dev/null and b/screenshots/open.png differ

Reply via email to