Initial commit
* Add installation instructions to README. * Make note that this repo is under development.
This commit is contained in:
commit
0fe80b708b
2 changed files with 37 additions and 0 deletions
23
.gitignore
vendored
Normal file
23
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
|
||||
# Folders
|
||||
_obj
|
||||
_test
|
||||
|
||||
# Architecture specific extensions/prefixes
|
||||
*.[568vq]
|
||||
[568vq].out
|
||||
|
||||
*.cgo1.go
|
||||
*.cgo2.c
|
||||
_cgo_defun.c
|
||||
_cgo_gotypes.go
|
||||
_cgo_export.*
|
||||
|
||||
_testmain.go
|
||||
|
||||
*.exe
|
||||
*.test
|
||||
14
README.md
Normal file
14
README.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Kinesis Connector Application
|
||||
|
||||
A Kinesis Connector Application written in Go for extracting streaming event data
|
||||
into S3, Redshift, DynamoDB, and more.
|
||||
|
||||
__Note:__ _This codebase is a under active development, and is not condisdered
|
||||
production ready._
|
||||
|
||||
## Installation
|
||||
|
||||
Clone the repository.
|
||||
|
||||
$ git clone git@github.com:harlow/go-etl.git
|
||||
|
||||
Loading…
Reference in a new issue