From ee29bcc45a2f7232abc0682f8a604b3ded02eed3 Mon Sep 17 00:00:00 2001 From: Carlos Natalino <carlos.natalino@chalmers.se> Date: Thu, 29 Sep 2022 18:37:11 +0200 Subject: [PATCH] Including a dotenv file to set environment variables necessary for the service to run. --- src/opticalattackdetector/.env | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/opticalattackdetector/.env diff --git a/src/opticalattackdetector/.env b/src/opticalattackdetector/.env new file mode 100644 index 000000000..3f6429af9 --- /dev/null +++ b/src/opticalattackdetector/.env @@ -0,0 +1,5 @@ +OPTICALATTACKDETECTORSERVICE_SERVICE_HOST=127.0.0.1 +OPTICALATTACKDETECTORSERVICE_SERVICE_PORT_GRPC=10006 +DBSCANSERVINGSERVICE_SERVICE_HOST=127.0.0.1 +DBSCANSERVINGSERVICE_SERVICE_PORT_GRPC=10007 +LOG_LEVEL=DEBUG \ No newline at end of file -- GitLab