Skip to content

Commit 59c045c

Browse files
committed
update README
1 parent fe1971f commit 59c045c

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
# kafka-examples
1+
# Apache Kafka Examples
2+
3+
This repository contains a set of examples to be used with Apache Kafka and other open source components.
4+
5+
* [Camel Kafka Connector](camel-kafka-connectors): A simple example of how to use the Apache Camel subproject plugins with Kafka Connect.
6+
7+
## System Requirements
8+
9+
These applications are designed to be run with Apache Kafka 2.x versions. To compile and run these projects you will also need:
10+
11+
* JDK 8 ro 11+
12+
* Maven 3
13+
* GraalVM Community
14+
* Docker Engine
15+
* Docker Compose

camel-kafka-connectors/.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/vscode,macos,visualstudiocode
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,macos,visualstudiocode
5+
6+
### macOS ###
7+
# General
8+
.DS_Store
9+
.AppleDouble
10+
.LSOverride
11+
12+
# Icon must end with two \r
13+
Icon
14+
15+
16+
# Thumbnails
17+
._*
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
.com.apple.timemachine.donotpresent
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
34+
35+
### VisualStudioCode ###
36+
.vscode/*
37+
!.vscode/tasks.json
38+
!.vscode/launch.json
39+
*.code-workspace
40+
41+
### VisualStudioCode Patch ###
42+
# Ignore all local history of files
43+
.history
44+
.ionide
45+
46+
### vscode ###
47+
!.vscode/settings.json
48+
!.vscode/extensions.json
49+
50+
# End of https://www.toptal.com/developers/gitignore/api/vscode,macos,visualstudiocode
51+
52+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
53+
54+
plugins/*
55+
!plugins/README.md
56+
*.gz

0 commit comments

Comments
 (0)