-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
84 additions
and
81 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
export DATABASE_DRIVER=org.postgresql.Driver; | ||
export DATABASE_URL=jdbc:postgresql://localhost:5432/postgres; | ||
export DATABASE_USERNAME=postgres; | ||
export DATABASE_PASSWORD=example; | ||
export QUERY_FETCH_CHUNK_SIZE=5; | ||
export KAFKA_BROKERS=localhost:9092; | ||
export KAFKA_SCHEMA_REGISTRY_URL=http://localhost:8081; | ||
export KAFKA_CLOSE_TIMEOUT=10s; | ||
export KAFKA_BUFFER_SIZE=50; | ||
export KAFKA_SINK_TOPIC=sink; | ||
export KAFKA_STATE_TOPIC=state; | ||
export KAFKA_STATE_GROUP_ID=state-group; | ||
export KAFKA_STATE_CLIENT_ID=state-client | ||
|
||
SCRIPT_PATH=$(cd "$(dirname "${BASH_SOURCE[0]}")" || exit; pwd -P) | ||
cd "$SCRIPT_PATH"/.. || exit | ||
|
||
sbt "example/runMain tamer.example.Main" -jvm-debug 5005 |