From c6f7cf1f1f86e3b8fb5cf1ec4f289f8fd37bc51d Mon Sep 17 00:00:00 2001 From: ben <stu126940@mail.uni-kiel.de> Date: Mon, 16 Mar 2020 12:01:50 +0100 Subject: [PATCH] add resource folder for configuration --- .../resources/META-INF/application.properties | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 uc1-application/resources/META-INF/application.properties diff --git a/uc1-application/resources/META-INF/application.properties b/uc1-application/resources/META-INF/application.properties new file mode 100644 index 000000000..620b1ba0a --- /dev/null +++ b/uc1-application/resources/META-INF/application.properties @@ -0,0 +1,16 @@ +cassandra.host=localhost +cassandra.port=9042 +cassandra.keyspace=titanccp +cassandra.init.timeout.ms=30000 + +webserver.enable=true +webserver.port=8081 +webserver.cors=true +webserver.gzip=false + +kafka.bootstrap.servers=localhost:9092 +kafka.input.topic=input +kafka.output.topic=output +num.threads=1 +commit.interval.ms=10 +cache.max.bytes.buffering=-1 -- GitLab