forked from jlandersen/vscode-kafka
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Webview to manage cluster settings
Fixes jlandersen#88 Signed-off-by: azerr <[email protected]>
- Loading branch information
1 parent
632c49f
commit eefcfe2
Showing
13 changed files
with
5,450 additions
and
345 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.DS_Store | ||
out/ | ||
dist/ | ||
pages/ | ||
|
||
.vscode-test/ | ||
|
||
|
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,32 @@ | ||
# How to Contribute | ||
|
||
Contributions are essential for keeping this extension great. We try to keep it as easy as possible to contribute changes and we are open to suggestions for making it even easier. There are only a few guidelines that we need contributors to follow. | ||
|
||
## Development | ||
|
||
### Installation Prerequisites: | ||
|
||
* latest [Visual Studio Code](https://code.visualstudio.com/) | ||
* [Node.js](https://nodejs.org/) v4.0.0 or higher | ||
|
||
### Steps | ||
|
||
1. Fork and clone this repository | ||
|
||
2. `cd vscode-kafka/` | ||
|
||
3. Install the dependencies: | ||
```bash | ||
$ npm install | ||
``` | ||
|
||
4. Compile with [webpack](https://webpack.js.org/) : | ||
|
||
```bash | ||
$ npm run compile | ||
``` | ||
|
||
This step is required since vscode-kafka uses [vscode-wizard](https://github.com/redhat-developer/vscode-wizard) to create / edit a cluster. [vscode-wizard](https://github.com/redhat-developer/vscode-wizard) is a NPM module which embeds some html, js, css resources in `pages` folder. As vscode-kafka is built with [webpack](https://webpack.js.org/), this pages folder must be copied from the `vscode-wizard/pages` NPM module to `vscode-kafka/pages`. | ||
|
||
5. To run the extension, open the Debugging tab in VSCode. | ||
6. Select and run 'Launch Extension (vscode-kafka)' at the top left. |
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
Oops, something went wrong.